-
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.81 KB
/
composer.json
File metadata and controls
71 lines (71 loc) · 1.81 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/todo",
"description": "Minimal Vortex app: Live todo list (vortexphp/live)",
"type": "project",
"license": "MIT",
"require": {
"php": "^8.2",
"vortexphp/framework": "^0.10",
"vortexphp/live": "^0.1"
},
"repositories": [
{
"type": "path",
"url": "../framework",
"options": {
"symlink": true,
"versions": {
"vortexphp/framework": "0.10.0"
}
}
},
{
"type": "path",
"url": "../live",
"options": {
"symlink": true,
"versions": {
"vortexphp/live": "0.1.0"
}
}
}
],
"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": {
"sync-live-assets": "@php scripts/sync-live-assets.php",
"post-install-cmd": [
"@sync-live-assets"
],
"post-update-cmd": [
"@sync-live-assets"
],
"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": "npm run build"
},
"bin": [
"vortex"
]
}