summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-12-09 11:20:37 +0100
committerRemi Collet <remi@php.net>2021-12-09 11:20:37 +0100
commit034b31663303bbc26fc55a824cc1b01e2d92a34b (patch)
treea036c528a9055f645c4566fb0e31d750e4e70e9c /composer.json
new package
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json37
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/"
+ }
+ }
+}