mirror of
https://github.com/Icinga/icinga-php-thirdparty.git
synced 2025-09-03 07:58:19 +02:00
82 lines
2.6 KiB
JSON
82 lines
2.6 KiB
JSON
{
|
|
"name": "shardj/zf1-future",
|
|
"description": "Zend Framework 1. The aim is to keep ZF1 working with the latest PHP versions",
|
|
"type": "library",
|
|
"version": "1.24.4",
|
|
"keywords": [
|
|
"framework",
|
|
"zf1"
|
|
],
|
|
"homepage": "https://github.com/Shardj/zf1-future/",
|
|
"license": "BSD-3-Clause",
|
|
"require": {
|
|
"php": ">=7.1",
|
|
"symfony/polyfill-ctype": "^1.30",
|
|
"symfony/polyfill-mbstring": "^1.30",
|
|
"symfony/polyfill-php81": "^1.30",
|
|
"symfony/polyfill-php83": "^1.30"
|
|
},
|
|
"require-dev": {
|
|
"friendsofphp/php-cs-fixer": "^3",
|
|
"php-parallel-lint/php-parallel-lint": "^1.3",
|
|
"phpstan/phpstan": "^1.4 || ^2.0",
|
|
"phpunit/phpunit": "^7|^8|^9",
|
|
"rector/rector": "0.12.19 || ^1.2 || ^2.0",
|
|
"yoast/phpunit-polyfills": "^2.0"
|
|
},
|
|
|
|
"suggest": {
|
|
"ext-mbstring": "Multibyte strings handling"
|
|
},
|
|
"autoload": {
|
|
"psr-0": {
|
|
"Zend_": "library/"
|
|
}
|
|
},
|
|
"include-path": [
|
|
"library/"
|
|
],
|
|
"config": {
|
|
"bin-dir": "bin",
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"branch-alias": {
|
|
"dev-master": "1.12.x-dev"
|
|
}
|
|
},
|
|
"archive": {
|
|
"exclude": ["/demos", "/documentation", "/tests"]
|
|
},
|
|
"replace": {
|
|
"zendframework/zendframework1": ">=1.12.20"
|
|
},
|
|
"scripts": {
|
|
"lint": "parallel-lint --exclude vendor --exclude tests/Zend/Loader/_files/ParseError.php .",
|
|
"php-cs-fixer:test": "bin/php-cs-fixer fix --dry-run --diff",
|
|
"php-cs-fixer:fix": "bin/php-cs-fixer fix",
|
|
"phpstan": "XDEBUG_MODE=off php bin/phpstan analyze --configuration .phpstan.dist.neon",
|
|
"phpstan:baseline": "XDEBUG_MODE=off php bin/phpstan analyze --configuration .phpstan.dist.neon -b .phpstan.dist.baseline.neon",
|
|
"rector:test": "bin/rector process --config .rector.php --dry-run",
|
|
"rector:fix": "bin/rector process --config .rector.php",
|
|
"test": [
|
|
"Composer\\Config::disableProcessTimeout",
|
|
"phpunit --bootstrap tests/TestHelper.php tests/Zend/AllTests.php"
|
|
]
|
|
},
|
|
"scripts-descriptions": {
|
|
"php-cs-fixer:test": "Run php-cs-fixer",
|
|
"php-cs-fixer:fix": "Run php-cs-fixer and fix issues",
|
|
"phpstan": "Run phpstan",
|
|
"phpstan:baseline": "Run phpstan and update baseline",
|
|
"rector:test": "Run rector",
|
|
"rector:fix": "Run rector and fix issues"
|
|
},
|
|
"autoload-dev": {
|
|
"psr-0": {
|
|
"Zend_": "tests/",
|
|
"resources_": "tests/"
|
|
}
|
|
}
|
|
}
|