-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 960 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
{
"name": "duncan3dc/climate-logger",
"type": "library",
"description": "Use league/climate with any PSR-3 compatible project",
"keywords": ["cli", "terminal", "command", "colors", "logging", "logger", "psr3", "psr-3"],
"homepage": "https://github.com/duncan3dc/climate-logger",
"license": "Apache-2.0",
"authors": [{
"name": "Craig Duncan",
"email": "[email protected]",
"homepage": "https://github.com/duncan3dc",
"role": "Developer"
}],
"abandoned": "league/climate",
"require": {
"league/climate": "^3.2",
"psr/log": "1.0.0",
"php": "^7.0"
},
"require-dev": {
"maglnet/composer-require-checker": "^0.1.6",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^5.0"
},
"autoload": {
"psr-4": {"duncan3dc\\CLImate\\": "src/"}
},
"autoload-dev": {
"psr-4": {"duncan3dc\\CLImateTests\\": "tests/"}
}
}