|
| 1 | +{ |
| 2 | + "name": "drupol/phptree", |
| 3 | + "type": "library", |
| 4 | + "description": "An implementation of tree data structure", |
| 5 | + "keywords": ["tree", "php"], |
| 6 | + "license": "MIT", |
| 7 | + "prefer-stable": true, |
| 8 | + "minimum-stability": "dev", |
| 9 | + "authors": [ |
| 10 | + { |
| 11 | + "name": "Pol Dellaiera", |
| 12 | + |
| 13 | + } |
| 14 | + ], |
| 15 | + "require": { |
| 16 | + "php": ">=7.1" |
| 17 | + }, |
| 18 | + "require-dev":{ |
| 19 | + "apigen/apigen": "dev-master", |
| 20 | + "drupol/phpspec-annotation": "^1.0", |
| 21 | + "friendsofphp/php-cs-fixer": "^2.13", |
| 22 | + "infection/infection": "^0.11.2", |
| 23 | + "jakub-onderka/php-parallel-lint": "^1.0", |
| 24 | + "leanphp/phpspec-code-coverage": "^4", |
| 25 | + "maglnet/composer-require-checker": "^1.1", |
| 26 | + "monolog/monolog": "^1.0", |
| 27 | + "php-http/guzzle6-adapter": "^1.1", |
| 28 | + "phpbench/phpbench": "dev-master", |
| 29 | + "phpmd/phpmd": "^2.6", |
| 30 | + "phpro/grumphp": "^0.14.0", |
| 31 | + "phpspec/phpspec": "^4", |
| 32 | + "phpstan/phpstan": "^0.10", |
| 33 | + "roave/better-reflection": "dev-master", |
| 34 | + "roave/security-advisories": "dev-master", |
| 35 | + "scrutinizer/ocular": "^1.3", |
| 36 | + "sebastian/phpcpd": "^4.0", |
| 37 | + "sensiolabs/security-checker": "^4.1", |
| 38 | + "squizlabs/php_codesniffer": "^3" |
| 39 | + }, |
| 40 | + "autoload": { |
| 41 | + "psr-4": { |
| 42 | + "drupol\\phptree\\": "src/" |
| 43 | + } |
| 44 | + }, |
| 45 | + "autoload-dev": { |
| 46 | + "psr-4": { |
| 47 | + "drupol\\phptree\\tests\\": "spec/src/" |
| 48 | + } |
| 49 | + }, |
| 50 | + "config": { |
| 51 | + "sort-packages": true |
| 52 | + }, |
| 53 | + "scripts": { |
| 54 | + "apigen": "./vendor/bin/apigen generate src --destination build/docs", |
| 55 | + "phpspec": "./vendor/bin/phpspec run", |
| 56 | + "grumphp": "./vendor/bin/grumphp run", |
| 57 | + "phpcs": "./vendor/bin/phpcs --ignore=vendor .", |
| 58 | + "phpcbf": "./vendor/bin/phpcbf --ignore=vendor .", |
| 59 | + "infection": "./vendor/bin/infection run -j 10", |
| 60 | + "scrutinizer": "./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml", |
| 61 | + "bench": "./vendor/bin/phpbench run --report=aggregate --store --precision=3" |
| 62 | + } |
| 63 | +} |
0 commit comments