From 034b31663303bbc26fc55a824cc1b01e2d92a34b Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 9 Dec 2021 11:20:37 +0100 Subject: new package --- composer.json | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 composer.json (limited to 'composer.json') 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/" + } + } +} -- cgit