diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..f9b6422 --- /dev/null +++ b/composer.json @@ -0,0 +1,37 @@ +{ + "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/" + } + } +} |