-
Notifications
You must be signed in to change notification settings - Fork 714
/
composer.json
45 lines (45 loc) · 1.5 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
{
"autoload": {
"psr-4": {
"WebPageTest\\": "www/src/"
},
"files": ["www/constants.inc", "www/resources/view.php", "www/resources/helpers.php"]
},
"require-dev": {
"phpunit/phpunit": "^9",
"squizlabs/php_codesniffer": "^3",
"vimeo/psalm": "^5.6"
},
"scripts": {
"format:php": "phpcbf --extensions=php,inc --standard=PSR12 --ignore=www/lib/,www/ec2/,www/resources/compiled www/ tests/ bulktest/",
"format:prettier": "npx [email protected] --write 'www/**/*.css' 'www/**/*.js'",
"format": "composer format:php && composer format:prettier",
"typecheck": "psalm --no-cache",
"lint:css": "npx [email protected] 'www/**/*.css'",
"lint:php": "phpcs --standard=PSR12 www/src www/cpauth www/common",
"lint": "composer lint:php && composer lint:css",
"pre-autoload-dump": "Google\\Task\\Composer::cleanup",
"test": "phpunit --configuration tests/phpunit.xml",
"build": "composer typecheck && composer format && composer test"
},
"require": {
"gmostafa/php-graphql-client": "^1.13",
"google/apiclient": "^2.12.1",
"guzzlehttp/guzzle": "^7.4",
"illuminate/container": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/events": "^8.0",
"illuminate/filesystem": "^8.0",
"illuminate/view": "^8.0",
"paragonie/random-lib": "^2.0",
"php": "^7.4.0||^8.0",
"respect/validation": "^2.2",
"league/commonmark": "^2.3",
"illuminate/http": "^8.83"
},
"extra": {
"google/apiclient-services": [
"Oauth2"
]
}
}