-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.27 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": "projek-xyz/slim-monolog",
"description": "Write log file on your Slim 3 application with Monolog logger.",
"keywords": ["slim", "microframework", "framework", "logger", "monolog", "library"],
"homepage": "http://www.projek.xyz/slim-monolog",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fery Wardiyanto",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/projek-xyz/slim-monolog/issues",
"source": "https://github.com/projek-xyz/slim-monolog"
},
"scripts": {
"test": "./vendor/bin/phpunit -c tests/phpunit.xml",
"lint": "./vendor/bin/phpcs --standard=PSR2 -n -p src/"
},
"autoload": {
"psr-4": {
"Projek\\Slim\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Projek\\Slim\\Tests\\": "tests/src/"
}
},
"require": {
"monolog/monolog": "~1.21",
"slim/slim": "~3.5"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.1-dev"
}
}
}