-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
36 lines (36 loc) · 868 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
34
35
36
{
"name": "jmleroux/circleci-php-client",
"description": "CircleCI PHP client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "jmleroux",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"webmozart/assert": "^1.11.0",
"symfony/http-client": "^6.1"
},
"require-dev": {
"ext-sockets": "*",
"phpunit/phpunit": "^9.5.25",
"friendsofphp/php-cs-fixer": "^3.11.0",
"phpstan/phpstan": "^1.8.6",
"symfony/dotenv": "^6.1",
"donatj/mock-webserver": "^2.5.0"
},
"autoload": {
"psr-4": {
"Jmleroux\\CircleCi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jmleroux\\CircleCi\\Tests\\": "tests/"
}
}
}