forked from topwire/topwire
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
99 lines (99 loc) · 2.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "topwire/topwire",
"repositories": {
"local-packages": {
"url": ".packages/*",
"type": "path",
"options": {
"versions": {
"helhum/composer-mono": "1.0.0",
"topwire/dynamic-form": "1.0.0"
}
}
}
},
"type": "typo3-cms-extension",
"description": "Turbo for TYPO3",
"homepage": "https://topwire.dev",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Helmut Hummel",
"email": "[email protected]",
"role": "Developer"
}
],
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": false,
"typo3/class-alias-loader": false,
"helhum/composer-mono": true
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Topwire\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Topwire\\Tests\\": "Tests/"
}
},
"require": {
"php": ">=8.1",
"typo3/cms-core": "^12.4.5 || ^13.4.1",
"helhum/typo3-console": "^8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"helhum/composer-mono": "@dev",
"helhum/vite": "@dev",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-doctrine": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"saschaegerer/phpstan-typo3": "^1.1.2",
"ssch/typo3-rector": "^1.3",
"topwire/dynamic-form": "^1.0",
"topwire/examples": "^1.0",
"topwire/website": "^1.0",
"typo3/cms-composer-installers": "^4.0@rc || 5.0",
"typo3/cms-form": "*",
"typo3/minimal": "*"
},
"extra": {
"branch-alias": {
"dev-main": "1.0.x-dev"
},
"typo3/cms": {
"extension-key": "topwire"
},
"helhum/composer-mono": {
"apps-dir": ".websites/*",
"versions": {
"helhum/composer-mono": "1.0.0",
"topwire/topwire": "1.0.0",
"topwire/dynamic-form": "1.0.0"
}
}
},
"scripts": {
"build": [
"npm ci",
"npm run build"
],
"post-update-cmd": [
"@composer up -d .websites/topwire.dev",
"@composer up -d .websites/test.topwire.test"
],
"post-install-cmd": [
"@composer ins -d .websites/topwire.dev --prefer-dist --no-progress --classmap-authoritative",
"@composer ins -d .websites/test.topwire.test --prefer-dist --no-progress --classmap-authoritative"
]
}
}