diff options
author | Remi Collet <remi@remirepo.net> | 2019-01-23 09:33:59 +0100 |
---|---|---|
committer | Remi Collet <remi@remirepo.net> | 2019-01-23 09:33:59 +0100 |
commit | 609df751fef83092fe4efad49be537b414b9f8de (patch) | |
tree | fe20f2858f9240d2f6545c79353cca21c831fac1 /composer.json | |
parent | 281f4bd7eb77ff0d85c1e73cc642bab85508a4c9 (diff) |
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/composer.json b/composer.json new file mode 100644 index 0000000..045b1ec --- /dev/null +++ b/composer.json @@ -0,0 +1,54 @@ +{ + "name": "zendframework/zendxml", + "description": "Utility library for XML usage, best practices, and security in PHP", + "license": "BSD-3-Clause", + "keywords": [ + "zf", + "zendframework", + "xml", + "security" + ], + "support": { + "issues": "https://github.com/zendframework/ZendXml/issues", + "source": "https://github.com/zendframework/ZendXml", + "rss": "https://github.com/zendframework/ZendXml/releases.atom", + "chat": "https://zendframework-slack.herokuapp.com", + "forum": "https://discourse.zendframework.com/c/questions/components" + }, + "require": { + "php": "^5.6 || ^7.0" + }, + "require-dev": { + "zendframework/zend-coding-standard": "~1.0.0", + "phpunit/phpunit": "^5.7.27 || ^6.5.8 || ^7.1.4" + }, + "autoload": { + "psr-4": { + "ZendXml\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "ZendXmlTest\\": "test/" + } + }, + "config": { + "sort-packages": true + }, + "extra": { + "branch-alias": { + "dev-master": "1.2.x-dev", + "dev-develop": "1.3.x-dev" + } + }, + "scripts": { + "check": [ + "@cs-check", + "@test" + ], + "cs-check": "phpcs", + "cs-fix": "phpcbf", + "test": "phpunit --colors=always", + "test-coverage": "phpunit --colors=always --coverage-clover clover.xml" + } +} |