-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
57 lines (57 loc) · 1.49 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
48
49
50
51
52
53
54
55
56
57
{
"name": "projek-xyz/slim",
"description": "Core library for projek-xyz/slim-skeleton",
"keywords": ["slim", "microframework", "framework", "core", "library"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fery Wardiyanto",
"email": "feryardiyanto@gmail.com"
}
],
"support": {
"issues": "https://github.com/projek-xyz/slim-framework/issues",
"source": "https://github.com/projek-xyz/slim-framework"
},
"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": {
"php": ">=5.5.0",
"league/plates": "~3.1",
"league/flysystem": "~1.0",
"league/climate": "~3.2",
"monolog/monolog": "~1.21",
"phpmailer/phpmailer": "~5.2",
"slim/slim": "~3.5",
"slim/pdo": "~1.8",
"vlucas/valitron": "~1.2",
"vlucas/phpdotenv": "~2.1"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"squizlabs/php_codesniffer": "~2.7"
},
"config": {
"preferred-dist": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}