-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
53 lines (53 loc) · 1.23 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
{
"name": "uselagoon/lagoon-php-sdk",
"description": "PHP Library for interacting the the Lagoon API.",
"keywords": ["hosting", "lagoon", "devops", "sdk", "api"],
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Lagoon PHP SDK Team",
"homepage": "https://github.com/steveworley/lagoon-php-sdk/graphs/contributors"
}
],
"repositories": [
{
"type": "path",
"url": "tests"
},
{
"type": "package",
"package": {
"name": "uselagoon/lagoon",
"description": "This pseudo-repository exists to make it simple to install Lagoon from source at a specific version.",
"type": "lagoon-platform",
"version": "v1.13.5",
"source": {
"url": "https://github.com/amazeeio/lagoon.git",
"type": "git",
"reference": "v1.13.5"
}
}
}
],
"require": {
"php": ">=7",
"euautomation/graphql-client": "^0.2.0"
},
"require-dev": {
"couscous/couscous": "^1.7",
"phpunit/phpunit": "^7.5",
"uselagoon/lagoon-php-sdk-testing": "@dev"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"test": "phpunit"
},
"autoload": {
"psr-4": {
"Lagoon\\": "src/"
}
}
}