-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
78 lines (78 loc) · 2.19 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "roave/security-advisories-builder",
"type": "project",
"description": "Build tool for roave/roave-security-advisories",
"license": "MIT",
"authors": [
{
"name": "Marco Pivetta",
"role": "maintainer",
"email": "[email protected]"
},
{
"name": "Ilya Tribusean",
"role": "maintainer",
"email": "[email protected]"
}
],
"require": {
"php": "~8.3.1",
"ext-bcmath": "*",
"ext-json": "*",
"ext-pcre": "*",
"azjezz/psl": "^3.1.0",
"composer/composer": "^2.8.4",
"composer/semver": "^3.4.3",
"monolog/monolog": "^3.8.1",
"nyholm/psr7": "^1.8.2",
"ocramius/package-versions": "^2.9.0",
"php-http/curl-client": "^2.3.3",
"psr/http-client": "^1.0.3",
"psr/http-message": "^2.0.0",
"psr/log": "^3.0.2",
"symfony/yaml": "^7.2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0.0",
"php-standard-library/psalm-plugin": "^2.3.0",
"phpunit/phpunit": "^11.5.6",
"psalm/plugin-phpunit": "^0.19.2",
"roave/infection-static-analysis-plugin": "^1.36.0",
"squizlabs/php_codesniffer": "^3.11.2",
"vimeo/psalm": "^6.3.0"
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-mbstring": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-php73": "*",
"symfony/polyfill-php80": "*"
},
"autoload": {
"psr-0": {
"Roave\\SecurityAdvisories\\": "src"
}
},
"autoload-dev": {
"psr-0": {
"RoaveTest\\SecurityAdvisories\\": "test"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"infection/extension-installer": false,
"php-http/discovery": true
},
"sort-packages": true
},
"scripts": {
"post-install-cmd": [
"which git",
"which bash",
"which curl",
"which cp"
]
}
}