-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
30 lines (30 loc) · 845 Bytes
/
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
{
"name": "mateuszbieniek/ezplatform-form-builder-multi-step-forms",
"license": "MIT",
"type": "ezplatform-bundle",
"description": "Adds feature to create multi-step forms in eZ Platform 2.5 Form Builder",
"repositories": [
{
"type": "composer",
"url": "https://updates.ez.no/ttl"
}
],
"autoload": {
"psr-4": {
"MateuszBieniek\\EzPlatformFormBuilderMultiStepFormsBundle\\": "src/bundle/",
"MateuszBieniek\\EzPlatformFormBuilderMultiStepForms\\": "src/lib/"
}
},
"require": {
"php": ">=7.1",
"ezsystems/ezpublish-kernel": "^7.5",
"ezsystems/ezplatform-form-builder": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "2.7.*",
"phpunit/phpunit": "~7.0"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
}
}