-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
43 lines (43 loc) · 1.22 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
{
"name": "adamwojs/ezplatform-form-builder-recaptcha-field",
"license": "MIT",
"type": "ezplatform-bundle",
"description": "Bundle providing reCAPTCHA field for the eZ Platform EE Form Builder",
"repositories": [
{
"type": "composer",
"url": "https://updates.ez.no/ttl"
}
],
"autoload": {
"psr-4": {
"AdamWojs\\EzPlatformFormBuilderRecaptchaBundle\\": "src/bundle/",
"AdamWojs\\EzPlatformFormBuilderRecaptcha\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"AdamWojs\\EzPlatformFormBuilderRecaptchaBundle\\Tests\\": "src/bundle/Tests"
}
},
"require": {
"php": "^7.3",
"ezsystems/ezplatform-kernel": "^1.0",
"ezsystems/ezplatform-form-builder": "^2.0",
"excelwebzone/recaptcha-bundle": "^1.5",
"symfony/http-kernel": "^5.0",
"symfony/config": "^5.0",
"symfony/dependency-injection": "^5.0",
"symfony/yaml": "^5.0",
"symfony/form": "^5.0",
"symfony/options-resolver": "^5.0"
},
"require-dev": {
"ezsystems/ezplatform-code-style": "^0.1.0",
"friendsofphp/php-cs-fixer": "^2.16.0",
"phpunit/phpunit": "^8.4"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
}
}