This repository has been archived by the owner on Feb 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.48 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
49
50
51
52
53
{
"name": "ezsystems/ezplatform-query-language",
"type": "ezplatform-bundle",
"license": "GPL-2.0-only",
"authors": [
{
"name": "Adam Wójs",
"email": "adam.wojs@ez.no"
},
{
"name": "eZ Systems",
"homepage": "https://github.com/ezsystems/ezplatform-query-language/contributors"
}
],
"keywords": [
"ezplatform"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.3",
"ext-mbstring": "*",
"antlr/antlr4-php-runtime": "^0.3.0",
"ezsystems/ezpublish-kernel": "^8.0@dev"
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"ezsystems/ezplatform-code-style": "^0.1.0"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformQueryLanguageBundle\\": "src/bundle/",
"EzSystems\\EzPlatformQueryLanguage\\": "src/lib/"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformQueryLanguageBundle\\Tests\\": "tests/bundle/",
"EzSystems\\EzPlatformQueryLanguage\\Tests\\": "tests/lib/"
}
},
"scripts": {
"fix-cs": "php-cs-fixer fix -v --show-progress=estimating",
"check-cs": "php-cs-fixer fix --dry-run -v --show-progress=estimating",
"unit-tests": "phpunit -c phpunit.xml.dist",
"build": "antlr4 -Dlanguage=PHP -package EzSystems\\\\EzPlatformQueryLanguage\\\\Core\\\\Repository\\\\EZQL\\\\Parser -o src/lib/Core/Repository/EZQL/Parser EZQL.g4 -visitor -no-listener"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}