-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
40 lines (40 loc) · 1.02 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
{
"description": "Flow package with utilities and components to create Fusion based backend modules with the common Neos look and feel",
"type": "neos-package",
"name": "wwwision/neos-modulecomponents",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "bwaidelich",
"email": "[email protected]"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/bwaidelich"
},
{
"type": "paypal",
"url": "https://www.paypal.me/bwaidelich"
}
],
"require": {
"php": ">=8.1",
"neos/neos": "^7.3 || ^8.0 || ^9.0",
"neos/fusion-form": "^2"
},
"require-dev": {
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Wwwision\\Neos\\ModuleComponents\\": "Classes"
}
},
"extra": {
"neos": {
"package-key": "Wwwision.Neos.ModuleComponents"
}
}
}