-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (55 loc) · 1.24 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": "axm/framework",
"type": "framework",
"description": "The AXM framework PHP",
"keywords": [
"framework",
"mvc",
"rapid development",
"web development",
"axm",
"orm",
"form",
"validation",
"psr"
],
"homepage": "https://axmphp.com",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-pdo": "*",
"ext-xml": "*",
"ext-openssl": "*",
"ext-zip": "*",
"ext-mbstring": "*",
"ext-intl": "*",
"filp/whoops": "^2.15.4",
"illuminate/database": "^10.46.0",
"axm/fluent": "^1.0.7"
},
"require-dev": {
"symfony/var-dumper": "^6.3.5",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"Axm\\": "src"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit"
},
"support": {
"forum": "http://forum.axmphp.com/",
"source": "https://github.com/Axm-framework/framework",
"slack": "https://axm.slack.com"
}
}