This repository was archived by the owner on Oct 11, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.55 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
{
"name": "voidtek/windguru.io",
"homepage": "https://github.com/voidtek/windguru.io",
"description": "Windguru.io: Windguru Client.",
"keywords": ["windguru", "client"],
"type": "library",
"license": "GPL-2.0+",
"support": {
"issues": "https://github.com/voidtek/windguru.io/issues",
"source": "https://github.com/voidtek/windguru.io"
},
"authors": [
{
"name": "voidtek: Victor DA COSTA",
"email": "[email protected]",
"role": "Author"
}
],
"require": {
"php-http/httplug": "^1.1",
"php-http/discovery": "^1.1",
"php-http/client-common": "^1.4",
"psr/http-message": "^1.0",
"monolog/monolog": "^1.22"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.1",
"squizlabs/php_codesniffer": "^2.0",
"satooshi/php-coveralls": "^1.0",
"codacy/coverage": "dev-master",
"scrutinizer/ocular": "^1.3"
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --ignore=vendor .",
"phpcbf": "./vendor/bin/phpcbf --ignore=vendor .",
"phpunit": "./vendor/bin/phpunit --coverage-clover build/logs/clover.xml -c tests/phpunit.xml tests",
"codacy": "./vendor/bin/codacycoverage clover build/logs/clover.xml",
"coveralls": "./vendor/bin/coveralls",
"scrutinizer": "./vendor/bin/ocular code-coverage:upload --format=php-clover build/logs/clover.xml"
},
"autoload": {
"psr-4": {
"voidtek\\WindguruIO\\": "src/"
}
}
}