-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.93 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name" : "phpcompatibility/phpcompatibility-symfony",
"description" : "A set of rulesets for PHP_CodeSniffer to check for PHP cross-version compatibility issues in projects, while accounting for polyfills provided by the Symfony polyfill libraries.",
"type" : "phpcodesniffer-standard",
"keywords" : [ "compatibility", "phpcs", "standards", "static analysis", "symfony", "polyfill" ],
"homepage" : "http://phpcompatibility.com/",
"license" : "LGPL-3.0-or-later",
"authors" : [ {
"name" : "Wim Godden",
"role" : "lead"
},
{
"name" : "Juliette Reinders Folmer",
"role" : "lead"
} ],
"support" : {
"issues" : "https://github.com/PHPCompatibility/PHPCompatibilitySymfony/issues",
"source" : "https://github.com/PHPCompatibility/PHPCompatibilitySymfony",
"security": "https://github.com/PHPCompatibility/PHPCompatibilitySymfony/security/policy"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
},
"lock": false
},
"require" : {
"phpcompatibility/php-compatibility" : "^9.0",
"phpcompatibility/phpcompatibility-paragonie" : "^1.0",
"phpcompatibility/phpcompatibility-passwordcompat" : "^1.0"
},
"require-dev" : {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"symfony/polyfill-php54": "1.19",
"symfony/polyfill-php55": "1.19",
"symfony/polyfill-php56": "1.19",
"symfony/polyfill-php70": "1.19",
"symfony/polyfill-php71": "1.19",
"symfony/polyfill-php72": "1.x-dev",
"symfony/polyfill-php73": "1.x-dev",
"symfony/polyfill-php74": "1.x-dev",
"symfony/polyfill-php80": "1.x-dev"
},
"suggest" : {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0 || This Composer plugin will sort out the PHP_CodeSniffer 'installed_paths' automatically.",
"roave/security-advisories": "dev-master || Helps prevent installing dependencies with known security issues."
},
"prefer-stable" : true
}