-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.03 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
{
"name": "continuousphp/sdk",
"homepage": "https://github.com/continuousphp/sdk",
"description": "PHP SDK to consume continuousphp API",
"type": "library",
"keywords": [
"build",
"tool",
"continuousphp"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Frederic Dewinne",
"email": "frederic@continuousphp.com"
}
],
"require-dev": {
"phpunit/phpunit": "~6.4.0",
"squizlabs/php_codesniffer": "^2.3",
"behat/behat": "^3.0",
"php-mock/php-mock-phpunit": "~2.0.1"
},
"require": {
"php": ">=7.1.0",
"continuousphp/guzzle-services": "^1.1",
"symfony/yaml": "~4.0.0"
},
"autoload": {
"psr-4": {
"Continuous\\Sdk\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Continuous\\Tests\\Sdk\\": "tests/Tests",
"Continuous\\Features\\": "features/bootstrap/",
"Continuous\\Fixtures\\Sdk\\": "tests/Fixtures"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/continuousphp/guzzle-services.git"
}
]
}