forked from jobapis/jobs-monster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.17 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
{
"name": "zao-web/jobs-monster",
"type": "library",
"description": "Making it simple to integrate your application with Monster.com's RSS Feed.",
"keywords": [
"jobs",
"api client",
"object",
"monster.com",
"monster"
],
"repositories": [
{
"type": "vcs",
"url": "https://github.com/zao-web/jobs-common.git"
}
],
"homepage": "https://github.com/jobapis/jobs-monster",
"license": "Apache-2.0",
"authors": [
{
"name": "Karl Hughes",
"email": "khughes.me@gmail.com",
"homepage": "https://github.com/karllhughes"
}
],
"require": {
"php": ">=5.5.0",
"zao-web/jobs-common": "dev-master"
},
"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/"
}
}
}