mirror of
https://github.com/linuxserver/Heimdall.git
synced 2026-08-07 07:16:13 +00:00
39191885e5
- laravel/framework ^11.45 -> ^12.0 (installed 12.63.0) - phpunit/phpunit ^10.5 -> ^11.0; migrate phpunit.xml to the 11.5 schema - graham-campbell/github ^12.5 -> ^13.0 (v12 caps illuminate/support at ^11) - Carbon 3 pulled in by L12; no application code changes required - gitignore /.phpunit.cache Full suite green: 59 tests, 128 assertions (1 skipped).
39 lines
994 B
JSON
39 lines
994 B
JSON
{
|
|
"name": "staabm/side-effects-detector",
|
|
"license": "MIT",
|
|
"description": "A static analysis tool to detect side effects in PHP code",
|
|
"keywords": ["static analysis"],
|
|
"autoload": {
|
|
"classmap": ["lib/"]
|
|
},
|
|
"autoload-dev": {
|
|
"classmap": [
|
|
"tests/"
|
|
]
|
|
},
|
|
"require": {
|
|
"php": "^7.4 || ^8.0",
|
|
"ext-tokenizer": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpstan/extension-installer": "^1.4.3",
|
|
"phpstan/phpstan": "^1.12.6",
|
|
"phpunit/phpunit": "^9.6.21",
|
|
"symfony/var-dumper": "^5.4.43",
|
|
"tomasvotruba/type-coverage": "1.0.0",
|
|
"tomasvotruba/unused-public": "1.0.0"
|
|
},
|
|
"config": {
|
|
"optimize-autoloader": true,
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"qa": ["@test", "@phpstan"],
|
|
"phpstan": "phpstan analyze",
|
|
"test": "phpunit"
|
|
}
|
|
}
|