-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
48 lines (48 loc) · 1.41 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
{
"name": "neos/fusion-form",
"type": "neos-package",
"description": "Fusion Form",
"license": [
"GPL-3.0-or-later"
],
"require": {
"php" : ">7.2",
"neos/flow": "^6.0 || ^7.0 || ^8.0 || ^9.0 || dev-master",
"neos/fusion": "^5.0 || ^7.0 || ^8.0 || ^9.0 || dev-master",
"neos/fusion-afx": "^1.2 || ^7.0 || ^8.0 || ^9.0 || dev-master",
"neos/utility-arrays": "*",
"neos/utility-objecthandling": "*",
"psr/http-factory": "*"
},
"require-dev": {
"neos/swiftmailer": "*",
"phpunit/phpunit": "^7.1 || ^8.0 || ^9.0",
"phpstan/phpstan": "^0.12.78"
},
"suggest": {
"neos/swiftmailer": "Required for the Neos.Fusion.Form.Runtime:Email action to work"
},
"autoload": {
"psr-4": {
"Neos\\Fusion\\Form\\": "Classes"
}
},
"autoload-dev": {
"psr-4": {
"Neos\\Fusion\\Form\\Tests\\": "Tests"
}
},
"extra": {
},
"scripts": {
"test:functional": ["vendor/bin/phpunit Tests/Functional"],
"test:unit": ["vendor/bin/phpunit Tests/Unit"],
"test:stan": ["vendor/bin/phpstan analyse -l 8 Classes"],
"test": ["composer install", "composer test:functional", "composer test:unit" ,"composer test:stan"]
},
"config": {
"allow-plugins": {
"neos/composer-plugin": true
}
}
}