mirror of
https://github.com/standardebooks/web.git
synced 2025-07-18 20:36:38 -04:00
35 lines
855 B
JSON
35 lines
855 B
JSON
{
|
|
"name": "thecodingmachine/safe-generator",
|
|
"description": "Generated the files for thecodingmachine/safe",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Safe\\": "src/"
|
|
}
|
|
},
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"ext-simplexml": "*",
|
|
"phpoffice/phpspreadsheet": "^1.4",
|
|
"ext-json": "^1.5",
|
|
"symfony/console": "^4.1.4",
|
|
"symfony/process": "^4.1",
|
|
"symfony/finder": "^4.1"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^7",
|
|
"phpstan/phpstan": "^0.10.3",
|
|
"thecodingmachine/phpstan-strict-rules": "^0.10.3",
|
|
"squizlabs/php_codesniffer": "^3.2",
|
|
"php-coveralls/php-coveralls": "^2.1"
|
|
},
|
|
"scripts": {
|
|
"phpstan": "phpstan analyse src -c phpstan.neon --level=7 --no-progress -vvv",
|
|
"cs-fix": "phpcbf",
|
|
"cs-check": "phpcs"
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "0.1-dev"
|
|
}
|
|
}
|
|
}
|