-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.33 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
{
"name": "octoper/lighthouse-php",
"description": "Interface for the Google Lighthouse",
"keywords": [
"lighthouse"
],
"homepage": "https://github.com/octoper/lighthouse-php",
"license": "MIT",
"authors": [
{
"name": "Vaggelis Yfantis",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4|^8.0",
"symfony/process": "^5.2.0",
"ext-json": "*"
},
"require-dev": {
"dms/phpunit-arraysubset-asserts": "^0.2.1",
"friendsofphp/php-cs-fixer": "^2.17.1",
"pestphp/pest": "^0.3.15",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "0.12.59",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"Octoper\\Lighthouse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Octoper\\Lighthouse\\Test\\": "tests/"
}
},
"scripts": {
"lint": "php-cs-fixer fix -v",
"test:lint": "php-cs-fixer fix -v --dry-run",
"test:types": "phpstan analyse --ansi --memory-limit=0",
"test:unit": "pest --colors=always",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}