-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
54 lines (54 loc) · 1.12 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
{
"autoload": {
"psr-4": {
"Bugo\\LightPortal\\": "src\\Sources\\LightPortal"
}
},
"require": {
"php": "^8.1",
"ext-dom": "*"
},
"require-dev": {
"pear/archive_tar": "^1.5",
"phing/phing": "3.*",
"rector/rector": "^2.0"
},
"config": {
"platform": {
"php": "8.1"
}
},
"scripts": {
"check": "vendor/bin/rector process --dry-run --clear-cache",
"assets": [
"pnpm update",
"pnpm run build",
"pnpm run build:comments",
"pnpm run build:plugins",
"pnpm run build:sass"
],
"up": [
"cd src/Sources/LightPortal && composer update --no-dev -o",
"composer update"
],
"build": [
"composer run up",
"vendor/bin/phing"
],
"build:dev": [
"cd src/Sources/LightPortal && composer update",
"composer update",
"vendor/bin/phing dev_edition"
],
"build:geek": [
"composer run up",
"vendor/bin/phing geek_edition"
],
"build:all": [
"composer run assets",
"composer run build",
"vendor/bin/phing geek_edition",
"composer run build:dev"
]
}
}