diff options
author | Remi Collet <fedora@famillecollet.com> | 2016-06-29 11:09:24 +0200 |
---|---|---|
committer | Remi Collet <fedora@famillecollet.com> | 2016-06-29 11:09:24 +0200 |
commit | 3cdaa028439bf7255d3d0dc68996abed31acf431 (patch) | |
tree | 7a0491b9bb35db23706e2bb85666a89274627243 /composer.json | |
parent | 632fc6a6e8425b961bda563203336282cac0c9d5 (diff) |
php-zendframework-zend-json: 3.0.0
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..15d1962 --- /dev/null +++ b/composer.json @@ -0,0 +1,49 @@ +{ + "name": "zendframework/zend-json", + "description": "provides convenience methods for serializing native PHP to JSON and decoding JSON to native PHP", + "license": "BSD-3-Clause", + "keywords": [ + "zf2", + "json" + ], + "homepage": "https://github.com/zendframework/zend-json", + "extra": { + "branch-alias": { + "dev-master": "3.0-dev", + "dev-develop": "3.1-dev" + } + }, + "require": { + "php": "^5.5 || ^7.0" + }, + "require-dev": { + "zendframework/zend-stdlib": "^2.7 || ^3.0", + "squizlabs/php_codesniffer": "^2.3", + "phpunit/PHPUnit": "~4.0" + }, + "suggest": { + "zendframework/zend-json-server": "For implementing JSON-RPC servers", + "zendframework/zend-xml2json": "For converting XML documents to JSON" + }, + "autoload": { + "psr-4": { + "Zend\\Json\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendTest\\Json\\": "test/" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "upload-coverage": "coveralls", + "cs-check": "phpcs", + "cs-fix": "phpcbf fix -v", + "test": "phpunit", + "test-coverage": "phpunit --coverage-clover clover.xml" + } +} |