-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
36 lines (36 loc) · 938 Bytes
/
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
{
"name": "widgetsburritos/webpagetest",
"description": "PHP Library for Interacting with Web Page Test",
"version": "2.0.0",
"type": "library",
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"shrikeh/teapot": "^2.3",
"drupal/coder": "^8.2",
"phpdocumentor/reflection-docblock": "^2.0"
},
"license": "GPL-3.0-only",
"authors": [
{
"name": "WidgetsBurritos",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"WidgetsBurritos\\WebPageTest\\": "src"
}
},
"scripts": {
"test": [
"vendor/bin/phpunit --testsuite=WebPageTest"
],
"phpcs": [
"vendor/bin/phpcs --standard=vendor/drupal/coder/coder_sniffer/Drupal/ruleset.xml src/ tests/"
]
}
}