-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (55 loc) · 1.41 KB
/
composer.json
File metadata and controls
55 lines (55 loc) · 1.41 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
{
"name": "boldminded/queue",
"description": "ExpressionEngine's missing queue module",
"license": "proprietary",
"require": {
"litzinger/basee": "dev-master",
"bamarni/composer-bin-plugin": "^1.8.2",
"illuminate/queue": "^12.1",
"illuminate/bus": "^12.1",
"illuminate/contracts": "^12.1",
"nesbot/carbon": "3.8.6",
"illuminate/events": "^12.1",
"illuminate/redis": "^12.1"
},
"config": {
"vendor-dir": "addons/queue/vendor",
"preferred-install": "dist",
"platform": {
"php": "8.2"
},
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"target-directory": "addons/queue/vendor-bin",
"forward-command": false
}
},
"autoload": {
"psr-4": {
"BoldMinded\\Queue\\" : "addons/queue"
}
},
"scripts": {
"scope": [
"rm -rf ./addons/queue/vendor-build",
"./addons/queue/vendor-bin/php-scoper/vendor/bin/php-scoper add-prefix --output-dir=vendor-build --working-dir=addons/queue --force",
"COMPOSER_VENDOR_DIR=addons/queue/vendor-build composer dump-autoload"
],
"post-install-cmd": [
"@composer bin all install --ansi",
"@scope"
],
"post-update-cmd": [
"@composer bin all install --ansi",
"@scope"
],
"build-react": [
"cd themes/user/app; pnpm install; pnpm build --emptyOutDir"
]
}
}