forked from dzava/lighthouse-php
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 906 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 906 Bytes
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
{
"name": "rocketeers-app/lighthouse-php",
"description": "Interface for the Google Lighthouse project",
"keywords": [
"lighthouse"
],
"homepage": "https://github.com/rocketeers-app/lighthouse-php",
"license": "MIT",
"authors": [
{
"name": "Mark van Eijk",
"email": "m@rkvaneijk.nl"
}, {
"name": "Dimitris Zavantias",
"email": "dzavantias@gmail.com"
}
],
"require": {
"php": ">=7.4",
"symfony/process": "^4.0|^5.0|^6.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0",
"dms/phpunit-arraysubset-asserts": "^0.2.0"
},
"autoload": {
"psr-4": {
"Rocketeers\\Lighthouse\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rocketeers\\Lighthouse\\Tests\\": "tests/"
}
}
}