-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 949 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
37
{
"name": "varspool/jobadder-api-client",
"description": "JobAdder API Client",
"type": "library",
"require": {
"php": ">=7.1.0",
"psr/log": "^1.0",
"psr/http-message": "^1.0",
"symfony/serializer": "^2.8|^3.0",
"jane/openapi-runtime": "^1.0",
"roave/security-advisories": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.1",
"phpunit/php-invoker": "^1.1",
"jane/open-api": "^1.3",
"friendsofphp/php-cs-fixer": "2.0.0-alpha"
},
"license": "MIT",
"authors": [
{
"name": "Dominic Scheirlinck",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Varspool\\JobAdder\\": "src/",
"Varspool\\JobAdder\\V2\\": "generated/"
}
},
"autoload-dev": {
"psr-4": {
"Varspool\\JobAdder\\": "tests/"
}
}
}