-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.5 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
52
53
54
55
56
{
"name": "simplyphp/framework",
"description": "The Simply PHP is lightweight web application framework.",
"keywords": ["php framework", "simplyphp", "micro framework"],
"homepage": "https://rjhon.net",
"license": "MIT",
"authors": [
{
"name": "RJ A. Baquirin",
"email": "[email protected]",
"role": "Magic Programmer"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-pdo": "*",
"ext-json": "*",
"ext-mysqli": "*",
"ext-pdo_mysql": "*",
"illuminate/database": "^10.13",
"illuminate/events": "^10.13",
"illuminate/pagination": "^10.13",
"phplucidframe/console-table": "^1.2",
"phpmailer/phpmailer": "^6.2",
"symfony/http-foundation": "^6.3",
"symfony/var-dumper": ">=6.3",
"twig/twig": "^3.0"
},
"suggest": {
"intervention/image": "To handle Image processing in this micro framework"
},
"autoload": {
"files": [
"src/Simple/functions.php",
"src/Simple/ViewRenderer.php"
],
"psr-4": {
"Simple\\": "src/Simple"
}
},
"autoload-dev": {
"psr-4": {
"Simple\\Tests\\": "test/"
}
},
"require-dev": {
"phpunit/phpunit": "^10.2"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}