-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
52 lines (52 loc) · 1.2 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
{
"name": "lifyzer/foodcms",
"description": "FoodCMS™ - The Yummy CMS to search and know any details about foodstuffs.",
"type": "project",
"license": "GPL-3.0-or-later",
"homepage": "https://lifyzer.com",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "[email protected]",
"homepage": "https://ph7.me"
}
],
"config": {
"vendor-dir": "Server/vendor",
"bin-dir": "Server/vendor/bin",
"cache-dir": "Server/vendor/cache",
"autoloader-suffix": "Lifyzer"
},
"require": {
"php": ">=7.2",
"nikic/fast-route": "^1.3",
"twig/twig": "^2.4",
"swiftmailer/swiftmailer": "^6.0",
"vlucas/phpdotenv": "^5.4",
"shrikeh/teapot": "^2.3",
"monolog/monolog": "^1.23",
"psr/log": "^1.0",
"psr/container": "^1.1",
"symfony/http-foundation": "^4.0",
"filp/whoops": "2.*",
"pagerfanta/pagerfanta": "^2.0",
"erusev/parsedown": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"phake/phake": "^4.0"
},
"autoload": {
"psr-4": {
"Lifyzer\\Server\\": "Server"
}
},
"autoload-dev": {
"psr-4": {
"Lifyzer\\Test\\": "Test"
}
},
"scripts": {
"test": "Server/vendor/bin/phpunit"
}
}