-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.09 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
{
"name": "kamu/framework",
"description": "The Kamu Framework.",
"keywords": [
"framework",
"kamu"
],
"license": "MIT",
"homepage": "https://github.com/dewanakl/framework",
"support": {
"issues": "https://github.com/dewanakl/framework/issues",
"source": "https://github.com/dewanakl/framework"
},
"authors": [
{
"name": "Dewana Kretarta Lokeswara",
"email": "dewanakretarta29@gmail.com"
}
],
"require": {
"php": "^8.1",
"psr/clock": "^1.0",
"psr/container": "^2.0",
"psr/event-dispatcher": "^1.0",
"ext-openssl": "*"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"psy/psysh": "^0.11.22",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^10"
},
"autoload": {
"files": [
"src/helpers/helpers.php"
],
"psr-4": {
"Core\\": "src/Core/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}