-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
41 lines (41 loc) · 892 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
35
36
37
38
39
40
41
{
"name": "iazaran/php-mvc",
"description": "Pure PHP Composer based MVC Framework",
"type": "project",
"authors": [
{
"name": "Ismael Azaran",
"email": "eazaran@gmail.com"
}
],
"license": "MIT",
"autoload": {
"files": [
"env.php",
"src/migrations.php",
"src/routes.php"
],
"classmap": [
"src/"
]
},
"config": {
"platform": {
"php": "8.4"
}
},
"require": {
"php": "8.4",
"ext-pdo": "*",
"ext-json": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-memcached": "*",
"ext-grpc": "*",
"ext-sockets": "*",
"ext-curl": "*",
"phpmailer/phpmailer": "6.9.3",
"grpc/grpc": "1.57.0",
"google/protobuf": "4.30.2"
}
}