-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
executable file
·51 lines (47 loc) · 1.45 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
{
"name": "uxie/uxie",
"description": "Uxie a light MVC Framework",
"keywords": ["framework", "uxie", "mvc"],
"type": "framework",
"license": "MIT",
"authors": [
{
"name": "Amin Cheribet",
"email": "[email protected]",
"homepage": "https://github.com/Uxie-Framework",
"role": "Owner"
}
],
"require": {
"php": "^8.3",
"uxie/framework": "^0.9.2",
"uxie/statistics": "^0.4.0",
"vlucas/phpdotenv": "^5.6",
"mohamed-amine/file-uploader": "^4.0",
"mohamed-amine/ioc-container": "^0.8",
"intervention/image": "^3.6",
"jenssegers/blade": "^2.0",
"phpunit/phpunit": "^11.1",
"robmorgan/phinx": "^0.9"
},
"autoload": {
"psr-4": {
"App\\": "App/",
"Middleware\\": "App/Middlewares/",
"Controller\\": "App/Controllers/",
"Filter\\": "App/Filters/",
"Model\\": "App/Models/",
"Repository\\": "App/Repositories/",
"Service\\": "App/Services/"
}
},
"scripts": {
"post-install-cmd": "php -r \"copy('.env.example', '.env');\""
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "dev",
"prefer-stable": true
}