forked from bbaga/buildkite-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.1 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": "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.9 || ^2.4",
"psr/http-client": "^1.0",
"php-http/discovery": "^1.14"
},
"autoload": {
"psr-4": {
"bbaga\\BuildkiteApi\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"bbaga\\BuildkiteApi\\Tests\\": "tests/"
}
},
"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"
}
}