-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Try limiting psalm to version 5"
This reverts commit 5961f23.
- Loading branch information
1 parent
5961f23
commit ddf2d21
Showing
1 changed file
with
62 additions
and
62 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,64 +1,64 @@ | ||
{ | ||
"name": "sirbrillig/phpcs-variable-analysis", | ||
"description": "A PHPCS sniff to detect problems with variables.", | ||
"type": "phpcodesniffer-standard", | ||
"keywords": ["phpcs", "static analysis"], | ||
"license": "BSD-2-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Sam Graham", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Payton Swick", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"support": { | ||
"issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", | ||
"wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki", | ||
"source": "https://github.com/sirbrillig/phpcs-variable-analysis" | ||
}, | ||
"config": { | ||
"sort-order": true, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"lock": false | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"VariableAnalysis\\": "VariableAnalysis/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"VariableAnalysis\\Tests\\": "Tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit --no-coverage", | ||
"coverage": "./vendor/bin/phpunit", | ||
"test-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist --no-coverage", | ||
"coverage-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist", | ||
"lint": "./vendor/bin/phpcs", | ||
"fix": "./vendor/bin/phpcbf", | ||
"phpstan": "./vendor/bin/phpstan analyse", | ||
"psalm": "./vendor/bin/psalm --no-cache", | ||
"static-analysis": "composer phpstan && composer psalm" | ||
}, | ||
"require": { | ||
"php": ">=5.4.0", | ||
"squizlabs/php_codesniffer": "^3.5.6" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", | ||
"sirbrillig/phpcs-import-detection": "^1.1", | ||
"phpcsstandards/phpcsdevcs": "^1.1", | ||
"phpstan/phpstan": "^1.7", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", | ||
"vimeo/psalm": "^5.0" | ||
} | ||
"name": "sirbrillig/phpcs-variable-analysis", | ||
"description": "A PHPCS sniff to detect problems with variables.", | ||
"type": "phpcodesniffer-standard", | ||
"keywords" : [ "phpcs", "static analysis" ], | ||
"license": "BSD-2-Clause", | ||
"authors": [ | ||
{ | ||
"name": "Sam Graham", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Payton Swick", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"support" : { | ||
"issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", | ||
"wiki" : "https://github.com/sirbrillig/phpcs-variable-analysis/wiki", | ||
"source": "https://github.com/sirbrillig/phpcs-variable-analysis" | ||
}, | ||
"config": { | ||
"sort-order": true, | ||
"allow-plugins": { | ||
"dealerdirect/phpcodesniffer-composer-installer": true | ||
}, | ||
"lock": false | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"VariableAnalysis\\": "VariableAnalysis/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"VariableAnalysis\\Tests\\": "Tests/" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
"scripts": { | ||
"test": "./vendor/bin/phpunit --no-coverage", | ||
"coverage": "./vendor/bin/phpunit", | ||
"test-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist --no-coverage", | ||
"coverage-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist", | ||
"lint": "./vendor/bin/phpcs", | ||
"fix": "./vendor/bin/phpcbf", | ||
"phpstan": "./vendor/bin/phpstan analyse", | ||
"psalm": "./vendor/bin/psalm --no-cache", | ||
"static-analysis": "composer phpstan && composer psalm" | ||
}, | ||
"require" : { | ||
"php" : ">=5.4.0", | ||
"squizlabs/php_codesniffer": "^3.5.6" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", | ||
"sirbrillig/phpcs-import-detection": "^1.1", | ||
"phpcsstandards/phpcsdevcs": "^1.1", | ||
"phpstan/phpstan": "^1.7", | ||
"dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", | ||
"vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" | ||
} | ||
} |