-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
41 lines (41 loc) · 1.21 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
{
"name":"devik/magazine-landing",
"description": "MVC for a landing page with a folder and bucket. Suitable for creating landing pages etc.",
"type": "project",
"minimum-stability": "stable",
"authors":[
{
"name": "DevIK",
"email": "[email protected]",
"homepage": "https://gitlab.com/dev_ik"
}
],
"license": "MIT",
"autoload": {
"psr-4" : {
"classes\\" : "classes",
"classes\\query\\" : "classes/query",
"components\\" : "components",
"helpers\\" : "helpers",
"controllers\\" : "controllers",
"interfaces\\" : "interfaces",
"models\\" : "models"
}
},
"require": {
"php": ">=7.2",
"codeception/codeception": "^4.1.4",
"symfony/dotenv": "^4.0",
"sentry/sentry": "^1.9",
"vlucas/phpdotenv": "^2.5",
"robmorgan/phinx": "^0.10.6",
"twig/twig": "1.*",
"psr/log": "^1.1"
},
"require-dev": {
"codeception/module-asserts": "^1.2",
"codeception/module-phpbrowser": "^1.0",
"codeception/module-db": "^1.0",
"codeception/module-rest": "^1.2"
}
}