forked from utarwyn/jenkins-php-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
33 lines (33 loc) · 919 Bytes
/
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
{
"name": "utarwyn/jenkins-php-api",
"description": "A complete PHP API for Jenkins CI.",
"type": "library",
"keywords": ["jenkins", "ci", "api", "php", "web"],
"version": "0.0.1",
"license": "Apache-2.0",
"authors": [
{
"name": "Utarwyn",
"email": "[email protected]"
}
],
"support": {
"source": "https://github.com/utarwyn/jenkins-php-api",
"issues": "https://github.com/utarwyn/jenkins-php-api/issues"
},
"autoload": {
"psr-4": {
"Utarwyn\\": "src/Utarwyn"
}
},
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.3"
},
"require-dev": {
"phpunit/phpunit": "^7.1",
"phpro/grumphp": "^0.14.0",
"jakub-onderka/php-parallel-lint": "^1.0",
"friendsofphp/php-cs-fixer": "^2.11"
}
}