-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 992 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
{
"name": "wondernetwork/wiuphp",
"description": "A PHP client for the Where's It Up? API",
"license": "MIT",
"authors": [
{
"name": "Gemma Anible",
"email": "[email protected]"
}
],
"scripts": {
"phpcs": "./vendor/bin/phpcs -sp --report-width=120 --standard=vendor/phpcompatibility/php-compatibility/PHPCompatibility/ruleset.xml --runtime-set testVersion 7.4 src/ tests/",
"tests": "./vendor/bin/phpunit tests/"
},
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"ext-ctype": "*",
"guzzlehttp/guzzle": "^7"
},
"suggest": {
"ext-memcached": "Enables API response caching"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"wondernetwork\\wiuphp\\": "src/",
"wondernetwork\\wiuphp\\tests\\": "tests/"
}
}
}