-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
34 lines (34 loc) · 1020 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
{
"name": "ezsystems/ezplatform-page-builder-enhanced-code-block",
"description": "Integration of ACE code editor with the Code Block in eZ Platform EE",
"license": "TTL-2.0",
"type": "ezplatform-bundle",
"repositories": [
{ "type": "composer", "url": "https://updates.ez.no/ttl" }
],
"require": {
"ezsystems/ezplatform-admin-ui": "^1.1",
"ezsystems/ezplatform-page-builder": "^1.0",
"ezsystems/ezpublish-kernel": "^7.0"
},
"require-dev": {
"phpunit/phpunit": "~7.0",
"friendsofphp/php-cs-fixer": "2.7.*"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformPageBuilderEnhancedCodeBlockBundle\\": "src/bundle/",
"EzSystems\\EzPlatformPageBuilderEnhancedCodeBlock\\": "src/lib/"
}
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"_ezplatform_branch_for_behat_tests": "master",
"branch-alias": {
"dev-master": "1.0.x-dev",
"dev-tmp_ci_branch": "1.0.x-dev"
}
}
}