-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
27 lines (27 loc) · 987 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
{
"name": "dasunnethsara/zenithphp",
"description": "ZenithPHP, a simple and lightweight PHP framework designed to streamline web application development. ZenithPHP follows the MVC (Model-View-Controller) architecture and provides developers with a clean and flexible foundation to build modern PHP applications with ease.",
"license": "MIT",
"authors": [
{
"name": "Dasun Nethsara",
"email": "techsaralk.pro@gmail.com"
}
],
"require": {
"vlucas/phpdotenv": "^5.6",
"ext-pdo": "*",
"ext-openssl": "*",
"firebase/php-jwt": "^6.10"
},
"autoload": {
"psr-4": {
"ZenithPHP\\App\\": "App/",
"ZenithPHP\\App\\Controllers\\": "App/Controllers/",
"ZenithPHP\\Model\\": "App/Models/",
"ZenithPHP\\Core\\": "Core/src/",
"ZenithPHP\\Config\\": "Config/",
"ZenithPHP\\Migrations\\": "Migrations/"
}
}
}