-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.15 KB
/
composer.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
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
51
{
"name": "philwc/dark-sky-cli",
"description": "A CLI application to display the weather from Dark Sky.",
"license": "MIT",
"type": "project",
"require": {
"php": ">=7.1",
"symfony/console": "^4.1",
"philwc/dark-sky": "^2",
"guzzlehttp/guzzle": "^6.3",
"cache/filesystem-adapter": "^1.0",
"monolog/monolog": "^1.23",
"php-http/guzzle6-adapter": "^1.1",
"php-http/message": "^1.6",
"geocoder-php/nominatim-provider": "^5.0",
"geocoder-php/cache-provider": "^4.1",
"rdlowrey/auryn": "^1.4"
},
"require-dev": {
"phpunit/phpunit": "^7.3",
"squizlabs/php_codesniffer": "^3.3",
"cache/array-adapter": "^1.0",
"overtrue/phplint": "^1.0"
},
"authors": [
{
"name": "Phil Wright- Christie",
"email": "philwc@gmail.com"
}
],
"autoload": {
"psr-4": {
"philwc\\DarkSky\\CLI\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"philwc\\DarkSky\\CLI\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"cs": "phpcs",
"lint": "phplint ./ --exclude=vendor --extensions=php,tpl",
"check": [
"@lint",
"@cs",
"@test"
]
}
}