-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.36 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
{
"name": "eliseekn/tinymvc",
"description": "TinyMVC is a PHP framework based on MVC architecture that helps you build easily and quickly powerful web applications and RESTful API.",
"type": "project",
"license": "MIT",
"keywords": ["php-framework", "mvc"],
"authors": [
{
"name": "N'Guessan Kouadio Elisée",
"email": "eliseekn@gmail.com",
"homepage": "https://eliseekn.netlify.app",
"role": "Developer"
}
],
"minimum-stability": "dev",
"autoload": {
"files": [
"app/Helpers.php",
"core/Support/Helpers.php"
],
"psr-4": {
"App\\" : "app/",
"Core\\" : "core/",
"Tests\\" : "tests/"
}
},
"config": {
"optimize-autoloader": true
},
"require": {
"php": "^8.1",
"wixel/gump": "^1.11",
"phpmailer/phpmailer": "^6.1",
"nesbot/carbon": "^2.41",
"twig/twig": "^3.0",
"symfony/console": "^5.2",
"dflydev/dot-access-data": "^3.0",
"symfony/process": "^5.3",
"spatie/php-structure-discoverer": "dev-main",
"psy/psysh": "@stable"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/var-dumper": "^5.2",
"filp/whoops": "^2.12",
"fakerphp/faker": "^1.15"
}
}