-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "jobapis/jobs-muse",
"type": "library",
"description": "Making it simple to integrate your application with the Muse's Jobs API.",
"keywords": [
"jobs",
"api client",
"object",
"muse",
"themuse.com"
],
"homepage": "https://github.com/jobapis/jobs-muse",
"license": "Apache-2.0",
"authors": [
{
"name": "Karl Hughes",
"email": "khughes.me@gmail.com",
"homepage": "https://github.com/karllhughes"
}
],
"require": {
"php": ">=5.5.0",
"jobapis/jobs-common": "^2.0.2"
},
"require-dev": {
"phpunit/phpunit": ">=4.6",
"phpunit/php-code-coverage": "~2.0",
"mockery/mockery": ">=0.9.4",
"squizlabs/php_codesniffer": "~2.0"
},
"autoload": {
"psr-4": {
"JobApis\\Jobs\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JobApis\\Jobs\\Client\\Test\\": "tests/src/"
}
}
}