mirror of
https://ghproxy.net/https://github.com/aspirepress/AspireSync.git
synced 2025-10-04 13:31:03 +08:00
* refactor: zap doctrine/orm (but still using DBAL) * refactor: zap flysystem * build: upgrade dev deps * refactor: zap CacheServiceInterface and DatabaseCacheService * refactor: zap VersionUtil
96 lines
2.7 KiB
JSON
96 lines
2.7 KiB
JSON
{
|
|
"type": "project",
|
|
"license": "proprietary",
|
|
"minimum-stability": "stable",
|
|
"prefer-stable": true,
|
|
"require": {
|
|
"php": ">=8.3",
|
|
"ext-ctype": "*",
|
|
"ext-iconv": "*",
|
|
"doctrine/doctrine-bundle": ">=2.13.2",
|
|
"doctrine/doctrine-migrations-bundle": "^3.4.1",
|
|
"guzzlehttp/guzzle": ">=7.9.2",
|
|
"ramsey/uuid": ">=4.7.6",
|
|
"saloonphp/rate-limit-plugin": ">=2",
|
|
"saloonphp/saloon": ">=3.10.1",
|
|
"symfony/console": "7.2.*",
|
|
"symfony/dotenv": "7.2.*",
|
|
"symfony/expression-language": "7.2.*",
|
|
"symfony/flex": "^2.4.7",
|
|
"symfony/framework-bundle": "7.2.*",
|
|
"symfony/monolog-bundle": "^3.10",
|
|
"symfony/process": "7.2.*",
|
|
"symfony/runtime": "7.2.*",
|
|
"symfony/uid": "7.2.*",
|
|
"symfony/yaml": "7.2.*",
|
|
"thecodingmachine/safe": ">=2.5"
|
|
},
|
|
"require-dev": {
|
|
"laravel/pint": "^1.21",
|
|
"phpstan/phpstan": ">=1.12.19",
|
|
"phpunit/phpunit": ">=11.4.4",
|
|
"rector/rector": "^1.2.10",
|
|
"roave/security-advisories": "dev-latest",
|
|
"symfony/maker-bundle": "^1.62.1",
|
|
"thecodingmachine/phpstan-safe-rule": ">=1.2"
|
|
},
|
|
"config": {
|
|
"allow-plugins": {
|
|
"php-http/discovery": true,
|
|
"symfony/flex": true,
|
|
"symfony/runtime": true
|
|
},
|
|
"bump-after-update": true,
|
|
"sort-packages": true
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"App\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"App\\Tests\\": "tests/"
|
|
}
|
|
},
|
|
"replace": {
|
|
"symfony/polyfill-ctype": "*",
|
|
"symfony/polyfill-iconv": "*",
|
|
"symfony/polyfill-php72": "*",
|
|
"symfony/polyfill-php73": "*",
|
|
"symfony/polyfill-php74": "*",
|
|
"symfony/polyfill-php80": "*",
|
|
"symfony/polyfill-php81": "*",
|
|
"symfony/polyfill-php82": "*"
|
|
},
|
|
"scripts": {
|
|
"phpstan": "phpstan --verbose --memory-limit=2G",
|
|
"phpunit": "phpunit",
|
|
"pint": "pint",
|
|
"test": "@phpunit",
|
|
"test:unit": "@phpunit --testsuite=Unit",
|
|
"test:functional": "@phpunit --testsuite=functional",
|
|
"style:check": "@pint --test",
|
|
"style:fix": "@pint",
|
|
"auto-scripts": {
|
|
"cache:clear": "symfony-cmd",
|
|
"assets:install %PUBLIC_DIR%": "symfony-cmd"
|
|
},
|
|
"post-install-cmd": [
|
|
"@auto-scripts"
|
|
],
|
|
"post-update-cmd": [
|
|
"@auto-scripts"
|
|
]
|
|
},
|
|
"conflict": {
|
|
"symfony/symfony": "*"
|
|
},
|
|
"extra": {
|
|
"symfony": {
|
|
"allow-contrib": true,
|
|
"require": "7.2.*",
|
|
"docker": true
|
|
}
|
|
}
|
|
}
|