-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (34 loc) · 928 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
{
"name": "dawidgorecki/litemvc",
"type": "project",
"description": "Simple MVC framework for PHP 7.1.0 and later",
"keywords": ["mvc", "php", "framework", "small", "lightweight", "basic", "simple"],
"homepage": "https://github.com/dawidgorecki/litemvc",
"license": "MIT",
"authors": [
{
"name": "Dawid Górecki",
"role": "Developer"
}
],
"config": {
"vendor-dir": "Vendor"
},
"require": {
"php": ">=7.1.0",
"smarty/smarty": "~3.1",
"phpmailer/phpmailer": "~6.0",
"spipu/html2pdf": "^5.1",
"gregwar/captcha": "1.*"
},
"require-dev": {
"phpunit/phpunit": "~7.2"
},
"autoload": {
"psr-4": {
"Libraries\\": "Application/Libraries/",
"Controllers\\": "Application/Controllers/",
"Models\\": "Application/Models/"
}
}
}