-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
40 lines (40 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
{
"name": "jobapis/jobs-craigslist",
"type": "library",
"description": "Making it simple to integrate your application with Craigslist's Job Search RSS Feed.",
"keywords": [
"jobs",
"api",
"craigslist",
"rss"
],
"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",
"jobapis/jobs-common": "^2.0.0"
},
"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/"
}
}
}