forked from starweb/starlit-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 986 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
32
33
34
35
36
{
"name": "starlit/app",
"type": "library",
"description": "A lightweight MVC style microframework.",
"keywords": ["framework", "mvc"],
"homepage": "http://github.com/starweb/starlit-app",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Starweb AB"
}
],
"require": {
"php": ">=7.1.0",
"psr/container": "^1.0",
"starlit/utils": "^1.1",
"symfony/http-foundation": "^4.0",
"symfony/routing": "^4.0",
"filp/whoops": "^2.0",
"monolog/monolog": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"starlit/paginator": "~0.2"
},
"autoload": {
"psr-4": {"Starlit\\App\\": "src"}
},
"provide": {
"psr/container-implementation": "1.0"
},
"suggest": {
"starlit/paginator": "Required for use of the pagination view helper",
"mustache/mustache": "To render mustache templates with PHP"
}
}