-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
61 lines (61 loc) · 1.56 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "opensaucesystems/lxd",
"type": "library",
"description": "PHP-based API wrapper for LXD REST API.",
"keywords": [
"opensaucesystems",
"wrapper",
"api",
"client",
"lxd"
],
"homepage": "https://git.oss.place/opensaucesystems/lxd",
"license": "MIT",
"authors": [
{
"name": "Ashley Hood",
"email": "[email protected]",
"homepage": "https://www.opensauce.systems",
"role": "Developer"
}
],
"require": {
"php": "^7.3 || ^8.0",
"psr/http-message": "^1.0.1",
"php-http/httplug": "^2.2",
"php-http/discovery": "^1.12",
"php-http/client-implementation": "^1.0",
"php-http/client-common": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^9.4.4",
"mockery/mockery": "^1.4.2",
"php-http/guzzle7-adapter": "^0.1.1",
"guzzlehttp/psr7": "^1.6",
"php-http/mock-client": "^1.4",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"Opensaucesystems\\Lxd\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Opensaucesystems\\Lxd\\Tests\\": "tests"
}
},
"scripts": {
"test": [
"@test-phpcs",
"@test-phpunit"
],
"test-phpunit": "phpunit --configuration phpunit.xml",
"test-phpcs": "phpcs -v -s --standard=PSR2 src tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}