-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.78 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
57
58
59
60
61
62
63
{
"name": "initphp/framework3",
"description": "InitPHP Framework",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"InitPHP\\Framework\\": "system/",
"App\\": "application/"
}
},
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "[email protected]",
"homepage": "https://www.muhammetsafak.com.tr",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-intl": "*",
"ext-mbstring": "*",
"ext-curl": "*",
"ext-simplexml": "*",
"initphp/config": "^1.0",
"initphp/container": "^0.3.0",
"initphp/dotenv": "^2.0",
"initphp/http": "^2.1",
"initphp/router": "^1.2",
"initphp/views": "^1.0",
"initorm/orm": "^1.0",
"initphp/cache": "^0.1.0",
"initphp/sessions": "^3.0",
"initphp/translator": "^0.2.0",
"initphp/events": "^1.0",
"initphp/parameterbag": "^1.1",
"initphp/validation": "^1.0",
"initphp/encryption": "^1.0",
"initphp/input": "^1.2",
"illuminate/collections": "^10.37",
"nesbot/carbon": "^2.72",
"initphp/cookies": "^1.1",
"initphp/logger": "^1.0",
"initphp/upload": "^1.0",
"filp/whoops": "^2.15",
"initphp/performance-meter": "^1.0",
"symfony/console": "^6.4"
},
"require-dev": {
"symfony/var-dumper": "^6.4"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php init key:generate"
]
}
}