New upstream version 3.0.1
Showing
- .github/workflows/php.yml 34 additions, 0 deletions.github/workflows/php.yml
- .gitignore 4 additions, 0 deletions.gitignore
- CHANGELOG.md 55 additions, 0 deletionsCHANGELOG.md
- LICENSE 20 additions, 0 deletionsLICENSE
- README.md 171 additions, 0 deletionsREADME.md
- composer.json 37 additions, 0 deletionscomposer.json
- phpunit.xml 20 additions, 0 deletionsphpunit.xml
- src/JsonSerializer/Exception/JsonSerializerException.php 9 additions, 0 deletionssrc/JsonSerializer/Exception/JsonSerializerException.php
- src/JsonSerializer/JsonSerializer.php 506 additions, 0 deletionssrc/JsonSerializer/JsonSerializer.php
- tests/JsonSerializerTest.php 602 additions, 0 deletionstests/JsonSerializerTest.php
- tests/SupportClasses/AllVisibilities.php 11 additions, 0 deletionstests/SupportClasses/AllVisibilities.php
- tests/SupportClasses/EmptyClass.php 7 additions, 0 deletionstests/SupportClasses/EmptyClass.php
- tests/SupportClasses/MagicClass.php 21 additions, 0 deletionstests/SupportClasses/MagicClass.php
- tests/SupportClasses/MyType.php 9 additions, 0 deletionstests/SupportClasses/MyType.php
- tests/SupportClasses/MyTypeSerializer.php 20 additions, 0 deletionstests/SupportClasses/MyTypeSerializer.php
.github/workflows/php.yml
0 → 100644
.gitignore
0 → 100644
CHANGELOG.md
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "zumba/json-serializer", | ||
"type": "library", | ||
"description": "Serialize PHP variables, including objects, in JSON format. Support to unserialize it too.", | ||
"keywords": ["json", "serialize", "serializer"], | ||
"homepage": "http://tech.zumba.com", | ||
"license": "MIT", | ||
"scripts": { | ||
"test": "phpunit --colors=always" | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Zumba Fitness, LLC", | ||
"email": "engineering@zumba.com" | ||
}, | ||
{ | ||
"name": "Juan Basso", | ||
"email": "juan.basso@zumba.com" | ||
} | ||
], | ||
"require": { | ||
"php": ">=7.0.0", | ||
"ext-mbstring": "*" | ||
}, | ||
"suggest": { | ||
"jeremeamia/superclosure": "Allow to serialize PHP closures" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": ">=6.0 <10.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Zumba\\": "src/", | ||
"Zumba\\JsonSerializer\\Test\\": "tests/" | ||
} | ||
} | ||
} |
phpunit.xml
0 → 100644
src/JsonSerializer/JsonSerializer.php
0 → 100644
tests/JsonSerializerTest.php
0 → 100644
This diff is collapsed.
tests/SupportClasses/AllVisibilities.php
0 → 100644
tests/SupportClasses/EmptyClass.php
0 → 100644
tests/SupportClasses/MagicClass.php
0 → 100644
tests/SupportClasses/MyType.php
0 → 100644
tests/SupportClasses/MyTypeSerializer.php
0 → 100644
Please register or sign in to comment