-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
35 lines (35 loc) · 965 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
31
32
33
34
35
{
"name": "mateuszbieniek/ezplatform-form-builder-country-field",
"license": "MIT",
"type": "ezplatform-bundle",
"description": "Bundle providing Country select field for the eZ Platform EE Form Builder",
"repositories": [
{
"type": "composer",
"url": "https://updates.ez.no/ttl"
}
],
"autoload": {
"psr-4": {
"MateuszBieniek\\EzPlatformFormBuilderCountryBundle\\": "src/bundle/",
"MateuszBieniek\\EzPlatformFormBuilderCountry\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"MateuszBieniek\\EzPlatformFormBuilderCountryBundle\\Tests\\": "src/bundle/Tests"
}
},
"require": {
"php": ">=7.1",
"ezsystems/ezpublish-kernel": "^7.3",
"ezsystems/ezplatform-form-builder": "^1.0"
},
"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"
}
}