|
1 | 1 | { |
2 | | - "name": "sirbrillig/phpcs-variable-analysis", |
3 | | - "description": "A PHPCS sniff to detect problems with variables.", |
4 | | - "type": "phpcodesniffer-standard", |
5 | | - "keywords" : [ "phpcs", "static analysis" ], |
6 | | - "license": "BSD-2-Clause", |
7 | | - "authors": [ |
8 | | - { |
9 | | - "name": "Sam Graham", |
10 | | - "email": "php-codesniffer-variableanalysis@illusori.co.uk" |
11 | | - }, |
12 | | - { |
13 | | - "name": "Payton Swick", |
14 | | - "email": "payton@foolord.com" |
15 | | - } |
16 | | - ], |
17 | | - "support" : { |
18 | | - "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", |
19 | | - "wiki" : "https://github.com/sirbrillig/phpcs-variable-analysis/wiki", |
20 | | - "source": "https://github.com/sirbrillig/phpcs-variable-analysis" |
21 | | - }, |
22 | | - "config": { |
23 | | - "sort-order": true, |
24 | | - "allow-plugins": { |
25 | | - "dealerdirect/phpcodesniffer-composer-installer": true |
26 | | - }, |
27 | | - "lock": false |
28 | | - }, |
29 | | - "autoload": { |
30 | | - "psr-4": { |
31 | | - "VariableAnalysis\\": "VariableAnalysis/" |
32 | | - } |
33 | | - }, |
34 | | - "autoload-dev": { |
35 | | - "psr-4": { |
36 | | - "VariableAnalysis\\Tests\\": "Tests/" |
37 | | - } |
38 | | - }, |
39 | | - "minimum-stability": "dev", |
40 | | - "prefer-stable": true, |
41 | | - "scripts": { |
42 | | - "test": "./vendor/bin/phpunit --no-coverage", |
43 | | - "coverage": "./vendor/bin/phpunit", |
44 | | - "test-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist --no-coverage", |
45 | | - "coverage-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist", |
46 | | - "lint": "./vendor/bin/phpcs", |
47 | | - "fix": "./vendor/bin/phpcbf", |
48 | | - "phpstan": "./vendor/bin/phpstan analyse", |
49 | | - "psalm": "./vendor/bin/psalm --no-cache", |
50 | | - "static-analysis": "composer phpstan && composer psalm" |
51 | | - }, |
52 | | - "require" : { |
53 | | - "php" : ">=5.4.0", |
54 | | - "squizlabs/php_codesniffer": "^3.5.6" |
55 | | - }, |
56 | | - "require-dev": { |
57 | | - "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", |
58 | | - "sirbrillig/phpcs-import-detection": "^1.1", |
59 | | - "phpcsstandards/phpcsdevcs": "^1.1", |
60 | | - "phpstan/phpstan": "^1.7", |
61 | | - "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", |
62 | | - "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" |
63 | | - } |
| 2 | + "name": "sirbrillig/phpcs-variable-analysis", |
| 3 | + "description": "A PHPCS sniff to detect problems with variables.", |
| 4 | + "type": "phpcodesniffer-standard", |
| 5 | + "keywords": ["phpcs", "static analysis"], |
| 6 | + "license": "BSD-2-Clause", |
| 7 | + "authors": [ |
| 8 | + { |
| 9 | + "name": "Sam Graham", |
| 10 | + "email": "php-codesniffer-variableanalysis@illusori.co.uk" |
| 11 | + }, |
| 12 | + { |
| 13 | + "name": "Payton Swick", |
| 14 | + "email": "payton@foolord.com" |
| 15 | + } |
| 16 | + ], |
| 17 | + "support": { |
| 18 | + "issues": "https://github.com/sirbrillig/phpcs-variable-analysis/issues", |
| 19 | + "wiki": "https://github.com/sirbrillig/phpcs-variable-analysis/wiki", |
| 20 | + "source": "https://github.com/sirbrillig/phpcs-variable-analysis" |
| 21 | + }, |
| 22 | + "config": { |
| 23 | + "sort-order": true, |
| 24 | + "allow-plugins": { |
| 25 | + "dealerdirect/phpcodesniffer-composer-installer": true |
| 26 | + }, |
| 27 | + "lock": false |
| 28 | + }, |
| 29 | + "autoload": { |
| 30 | + "psr-4": { |
| 31 | + "VariableAnalysis\\": "VariableAnalysis/" |
| 32 | + } |
| 33 | + }, |
| 34 | + "autoload-dev": { |
| 35 | + "psr-4": { |
| 36 | + "VariableAnalysis\\Tests\\": "Tests/" |
| 37 | + } |
| 38 | + }, |
| 39 | + "minimum-stability": "dev", |
| 40 | + "prefer-stable": true, |
| 41 | + "scripts": { |
| 42 | + "test": "./vendor/bin/phpunit --no-coverage", |
| 43 | + "coverage": "./vendor/bin/phpunit", |
| 44 | + "test-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist --no-coverage", |
| 45 | + "coverage-lte9": "./vendor/bin/phpunit -c phpunitlte9.xml.dist", |
| 46 | + "lint": "./vendor/bin/phpcs", |
| 47 | + "fix": "./vendor/bin/phpcbf", |
| 48 | + "phpstan": "./vendor/bin/phpstan analyse", |
| 49 | + "psalm": "./vendor/bin/psalm --no-cache", |
| 50 | + "static-analysis": "composer phpstan && composer psalm" |
| 51 | + }, |
| 52 | + "require": { |
| 53 | + "php": ">=5.4.0", |
| 54 | + "squizlabs/php_codesniffer": "^3.5.6" |
| 55 | + }, |
| 56 | + "require-dev": { |
| 57 | + "phpunit/phpunit": "^4.8.36 || ^5.7.21 || ^6.5 || ^7.0 || ^8.0 || ^9.0 || ^10.5.32 || ^11.3.3", |
| 58 | + "phpcsstandards/phpcsdevcs": "^1.1", |
| 59 | + "phpstan/phpstan": "^1.7", |
| 60 | + "dealerdirect/phpcodesniffer-composer-installer": "^0.7 || ^1.0", |
| 61 | + "vimeo/psalm": "^0.2 || ^0.3 || ^1.1 || ^4.24 || ^5.0" |
| 62 | + } |
64 | 63 | } |
0 commit comments