-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (34 loc) · 876 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
{
"name": "kevinquinnyo/EspnFF",
"description": "Scraper API for ESPN Fantasy Football Leagues",
"type": "library",
"keywords": ["api", "espn", "fantasy football", "ff"],
"homepage": "https://github.com/kevinquinnyo/EspnFF",
"license": "MIT",
"authors": [
{
"name": "Kevin Quinn",
"homepage": "http://github.com/kevinquinnyo"
}
],
"require": {
"cakephp/core": "~3.5",
"guzzlehttp/guzzle": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "~5.5"
},
"autoload": {
"psr-4": {"FF\\": "src/"}
},
"autoload-dev": {
"psr-4": {
"FF\\Test\\": "tests"
}
},
"scripts": {
"cs": "phpcs --colors -p --standard=phpcs.xml.dist",
"cs-fix": "phpcbf --colors --standard=phpcs.xml.dist",
"test": "phpunit --no-coverage --colors=always --configuration phpunit.xml.dist"
}
}