-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 913 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
{
"name": "oladoyinbov/filesharing",
"description": "A minimal online file sharing application",
"license": "MIT",
"keywords": [
"framework",
"php-router",
"php-framework",
"application",
"simple-php-framework"
],
"autoload": {
"psr-4": {
"FastVolt\\": "src/",
"App\\": "app/"
},
"files": [
"src/Core/Functions/Environment.php",
"src/Core/Functions/RoutingLoader.php",
"src/Core/Functions/ResourcesLoader.php",
"src/Core/Functions/Helpers.php"
]
},
"require": {
"php": "^8.1",
"smarty/smarty": "^4.3",
"vlucas/phpdotenv": "^5.5",
"symfony/http-foundation": "^6.2"
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"friendsofphp/php-cs-fixer": "^3.22"
}
}