-
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) · 1.87 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.87 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": "vortexphp/forum",
"description": "Community forum application built with VortexPHP framework",
"type": "project",
"license": "MIT",
"repositories": [
{
"type": "path",
"url": "../framework",
"options": {
"symlink": true,
"versions": {
"vortexphp/framework": "0.12.0"
}
}
},
{
"type": "path",
"url": "../admin",
"options": {
"symlink": true,
"versions": {
"vortexphp/admin": "0.1.0"
}
}
}
],
"require": {
"php": "^8.2",
"league/commonmark": "^2.8",
"vortexphp/admin": "^0.1",
"vortexphp/framework": "^0.12"
},
"autoload": {
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"suggest": {
"ext-openssl": "SMTP STARTTLS / ssl:// (MAIL_ENCRYPTION tls or ssl)"
},
"config": {
"sort-packages": true
},
"scripts": {
"serve": "php vortex serve",
"doctor": "php vortex doctor",
"smoke": "php vortex smoke",
"db-check": "php vortex db-check",
"migrate": "php vortex migrate",
"migrate:down": "php vortex migrate:down",
"install:prod": "@composer install --no-dev --optimize-autoloader",
"validate-project": "composer validate --no-check-publish",
"test": "phpunit",
"build:css": "npm run build:css",
"publish-assets": "php vortex publish:assets",
"post-install-cmd": ["@publish-assets"],
"post-update-cmd": ["@publish-assets"]
},
"bin": [
"vortex"
],
"require-dev": {
"phpunit/phpunit": "^11"
}
}