-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
50 lines (50 loc) · 1.3 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
{
"name": "jonathanraftery/bullhorn-rest-client",
"version": "1.4.1",
"description": "Simple REST client for the Bullhorn API, including automated OAuth2 login",
"keywords": [
"bullhorn",
"rest",
"api",
"client"
],
"license": "MIT",
"authors": [
{
"name": "Jonathan Raftery",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"scripts": {
"test": "phpunit",
"test:unit": "phpunit --testsuite unit",
"test:integration": "phpunit --testsuite integration",
"test:rest": "phpunit --group rest",
"test:rest:unit": "phpunit --testsuite unit --group rest",
"test:rest:integration": "phpunit --testsuite integration --group rest",
"test:auth": "phpunit --group auth",
"test:auth:unit": "phpunit --testsuite unit --group auth",
"test:auth:integration": "phpunit --testsuite integration --group auth"
},
"require": {
"php": "^7.3|^8.0",
"league/oauth2-client": "^2.5",
"guzzlehttp/guzzle": "^7.2",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"vlucas/phpdotenv": "^5.2"
},
"autoload": {
"psr-4": {
"jonathanraftery\\Bullhorn\\Rest\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"jonathanraftery\\Bullhorn\\Rest\\Tests\\": "tests"
}
}
}