-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
47 lines (47 loc) · 1.14 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
{
"name": "devdavido/performance-audit-plugin",
"type": "project",
"license": "GPL-3.0-only",
"authors": [
{
"name": "DevDavido",
"homepage": "https://github.com/DevDavido"
}
],
"require": {
"php": ">=7.2.5",
"ext-json": "*",
"ext-spl": "*",
"ducks-project/spl-types": "^5.0",
"symfony/polyfill-mbstring": "^1.31",
"symfony/process": "^5.4",
"devdavido/lighthouse": "dev-master#91ddfe4126453d3c9cb4c8263a5238967fbdf9ac"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.19"
},
"autoload": {
"classmap": ["./"]
},
"scripts": {
"format": [
"vendor/bin/php-cs-fixer fix --verbose"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "7.2.5"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "vcs",
"url": "https://github.com/devdavido/lighthouse-php"
}
]
}