-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
65 lines (65 loc) · 1.89 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "t3g/elasticorn",
"description": "elastic manager based on elastica",
"minimum-stability": "stable",
"license": "GPL-3.0",
"homepage": "https://elasticorn.net",
"support": {
"issues": "https://github.com/TYPO3GmbH/elasticorn/issues"
},
"authors": [
{
"name": "TYPO3 GmbH",
"email": "info@typo3.com"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ruflin/elastica": "^7.1",
"symfony/yaml": "^5.0",
"symfony/console": "^5.0",
"symfony/dependency-injection": "^5.0",
"sebastian/diff": "^4.0",
"vlucas/phpdotenv": "^2.3",
"consolidation/self-update": "^1.2"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"friendsofphp/php-cs-fixer": "^2.16",
"phpunit/phpunit": "^9.3",
"behat/behat": "^3.1",
"phpspec/prophecy-phpunit": "^2.0"
},
"scripts": {
"t3g:cgl": [
"php-cs-fixer fix --config build/.php_cs.dist -v --dry-run"
],
"t3g:cgl:fix": [
"php-cs-fixer fix --config build/.php_cs.dist"
],
"t3g:test:php": [
"Composer\\Config::disableProcessTimeout", "@t3g:test:php:unit"
],
"t3g:test:php:cover": [
"Composer\\Config::disableProcessTimeout", "mkdir -p var/log/junit/ && phpunit -c build/phpunit.xml --log-junit var/log/junit/phpunit.xml --coverage-clover var/log/junit/coverage.xml"
],
"t3g:test:php:cover:html": [
"Composer\\Config::disableProcessTimeout",
"mkdir -p var/log/junit/ && phpunit -c build/phpunit.xml --log-junit var/log/junit/phpunit.xml --coverage-clover var/log/junit/coverage.xml --coverage-html var/log/junit/coverage/"
],
"t3g:test:php:unit": [
"mkdir -p var/log/junit/ && phpunit -c build/phpunit.xml --log-junit var/log/junit/phpunit-unit.xml"
]
},
"autoload": {
"psr-4": {
"T3G\\Elasticorn\\": "Classes/"
}
},
"bin": [
"elasticorn.php"
],
"config": {
"bin-dir": "bin"
}
}