-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.38 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
{
"name": "projek-xyz/slim-plates",
"description": "Render your Slim 3 application views using Plates template engine.",
"keywords": ["slim", "microframework", "framework", "view", "template", "plates", "library"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Fery Wardiyanto",
"email": "feryardiyanto@gmail.com"
}
],
"support": {
"issues": "https://github.com/projek-xyz/slim-plates/issues",
"source": "https://github.com/projek-xyz/slim-plates"
},
"scripts": {
"spec": [
"@lint",
"@test"
],
"test": "kahlan --config=test/config.php",
"lint": "phpcs --standard=PSR2 -n -p src"
},
"autoload": {
"psr-4": {
"Projek\\Slim\\": "src/"
}
},
"require": {
"league/plates": "^3.1",
"psr/container": "^1.0 || ^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^1.0 || ^2.0",
"slim/slim": "^4.8"
},
"require-dev": {
"kahlan/kahlan": "^5.1",
"projek-xyz/container": "^0.7",
"slim/psr7": "^1.1",
"squizlabs/php_codesniffer": "^3.6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}