-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.34 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" : "raxon/framework",
"description" : "raxon/framework see https://raxon.org for detailed usage",
"type" : "library",
"keywords" : ["framework", "raxon", "raxon.org", "org","library", "language", "template", "engine"],
"homepage": "https://raxon.org",
"require" : {
"php": ">=8.0",
"ext-mbstring": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-posix": "*",
"ext-zend-opcache": "*",
"ext-openssl": "*",
"ext-readline": "*",
"ext-pcntl": "*",
"ext-zlib": "*",
"ext-zip": "*",
"ext-shmop": "*",
"raxon/autoload": ">=2024.09.08",
"raxon/boot": ">=2024.09.08",
"raxon/basic": ">=2024.09.08",
"raxon/event": ">=2024.09.08",
"raxon/config": ">=2024.09.08",
"raxon/host": ">=2024.09.08",
"raxon/middleware": ">=2024.09.08",
"raxon/node": ">=2024.09.08",
"raxon/output_filter": ">=2024.09.08",
"raxon/log": ">=2024.09.08",
"raxon/route": ">=2024.09.08",
"raxon/server": ">=2024.09.08",
"raxon/account": ">=2024.09.08",
"monolog/monolog" : "^3.6",
"defuse/php-encryption": "^2.3",
"spatie/fork": "^1.2.2"
},
"require-dev" : {
"pestphp/pest": "^2.34"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"license" : "MIT",
"authors" : [{
"name" : "Remco van der Velde",
"email" : "[email protected]"
}
],
"autoload" : {
"psr-4" : {
"Raxon\\" : "src/"
}
}
}