-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 2.22 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 2.22 KB
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
64
65
66
67
68
69
70
71
{
"name": "axm/axm",
"version": "1.0.34",
"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": "*",
"axm/framework": "^1.0"
},
"require-dev": {
"symfony/var-dumper": "^6.3.5"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"App\\Commands\\": "app/commands/",
"App\\Controllers\\": "app/controllers/",
"App\\Database\\": "app/database/",
"App\\Database\\Seeds\\": "app/database/seeds/",
"App\\Database\\Schema\\": "app/database/schema/",
"App\\Database\\Factories\\": "app/database/factories/",
"App\\Database\\Migrations\\": "app/database/migrations/",
"App\\Middlewares\\": "app/middlewares/",
"App\\Models\\": "app/models/",
"App\\Raxm\\": "app/raxm/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": false
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"pre-update-cmd": [
"@php -r \"if (strpos(file_get_contents('composer.json'), 'axm/axm') === false) { echo 'Excluding axm/axm from update.'; file_put_contents('composer.json', str_replace('\"update\": [', '\"update\": [\"--no-plugins\", \"--ignore-platform-reqs\",', file_get_contents('composer.json'))); }\""
],
"post-create-project-cmd": [
"@php axm key:generate --force"
]
},
"support": {
"forum": "http://forum.axmphp.com/",
"source": "https://github.com/axm-framework/app",
"slack": "https://axmchat.slack.com"
}
}