-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·44 lines (41 loc) · 1.22 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
{
"name" : "uxie/framework",
"description": "Uxie framework core",
"keywords" : ["framework", "uxie"],
"type" : "framework",
"license" : "MIT",
"require": {
"php" : "^8.3",
"phpunit/phpunit" : "^11.1",
"mohamed-amine/ioc-container": "^0.8",
"jenssegers/blade": "^2.0",
"vlucas/phpdotenv": "^5.6"
},
"authors": [
{
"name" : "Amin Cheribet",
"email" : "[email protected]",
"homepage": "https://github.com/Uxie-Framework/Uxie",
"role" : "Owner"
}
],
"autoload": {
"files": [
"Services/Helpers/helpers.php"
],
"psr-4": {
"Authenticator\\": "Authenticator/",
"Box\\": "Box/",
"Kernel\\": "Kernel/",
"Model\\": "Model/",
"Request\\": "Request/",
"Response\\": "Response/",
"Router\\": "Router/",
"Services\\": "Services/",
"Validator\\": "Validator/",
"Session\\": "Session/",
"Cookie\\": "Cookie/",
"tests\\": "tests/"
}
}
}