-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
59 lines (59 loc) · 1.27 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
{
"name": "bbaga/buildkite-php",
"type": "library",
"description": "PHP client library for consuming the Buildkite API",
"keywords": [
"php",
"buildkite",
"rest",
"api",
"client",
"composer"
],
"license": "MIT",
"authors": [
{
"name": "Bela Bagameri"
}
],
"require": {
"ext-json": "*",
"guzzlehttp/psr7": "^1.6",
"psr/http-client": "^1.0"
},
"autoload": {
"psr-4": {
"bbaga\\BuildkiteApi\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"bbaga\\BuildkiteApi\\Tests\\": "tests/"
}
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"vimeo/psalm": "^3.11",
"psalm/plugin-phpunit": "^0.10.0",
"symplify/easy-coding-standard": "^7.2",
"bbaga/buildkite-php-guzzle-client": "^2.0"
},
"scripts": {
"ecs-fix": {
"fix": "vendor/bin/ecs check src tests --fix"
},
"test": {
"psalm": "vendor/bin/psalm",
"ecs": "vendor/bin/ecs check src tests",
"unit": "vendor/bin/phpunit"
},
"integration": {
"integration": "vendor/bin/phpunit --testsuite integration"
}
},
"suggest": {
"bbaga/buildkite-php-guzzle-client": "Provides basic, off the shelf http client implementation"
}
}