-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
41 lines (41 loc) · 974 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
37
38
39
40
41
{
"name": "lifyzer/app",
"description": "Lifyzer App. The CMS to add/manage easily the food products.",
"type": "project",
"homepage": "https://lifyzer.com/app/",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "hi@ph7.me",
"homepage": "http://pierrehenry.be"
}
],
"config": {
"vendor-dir": "Server/vendor",
"bin-dir": "Server/vendor/bin",
"cache-dir": "Server/vendor/cache",
"autoloader-suffix": "Lifyzer"
},
"require": {
"php": ">=7.1.0",
"nikic/fast-route": "^1.3",
"twig/twig": "^2.4",
"swiftmailer/swiftmailer": "^6.0",
"vlucas/phpdotenv": "^2.4",
"shrikeh/teapot": "^2.3",
"monolog/monolog": "^1.23",
"psr/log": "^1.0",
"psr/container": "^1.0",
"symfony/http-foundation": "^4.0",
"filp/whoops": "2.*"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"phake/phake": "^3.0"
},
"autoload": {
"psr-4": {
"Lifyzer\\": "Server"
}
}
}