-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
49 lines (49 loc) · 1.39 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
{
"name": "ezsystems/ezplatform-cron",
"description": "Simple cron bundle for eZ Platform",
"homepage": "https://github.com/ezsystems/ezplatform-cron",
"license": "GPL-2.0-only",
"type": "ezplatform-bundle",
"authors": [
{
"name": "eZ dev-team & eZ Community",
"homepage": "https://github.com/ezsystems/ezplatform-cron/contributors"
}
],
"replace": {
"ezsystems/ezstudio-cron": "*"
},
"autoload": {
"psr-4": {
"EzSystems\\EzPlatformCronBundle\\": "src/bundle"
}
},
"autoload-dev": {
"psr-4": {
"EzSystems\\EzPlatformCronBundle\\Tests\\": "tests/CronBundle"
}
},
"require": {
"php": "^7.3 || ^8.0",
"cron/cron": "^1.4",
"symfony/dependency-injection": "^5.0",
"symfony/http-kernel": "^5.0",
"symfony/console": "^5.0",
"symfony/config": "^5.0",
"symfony/process": "^5.0",
"ezsystems/ezplatform-kernel": "^1.3@dev"
},
"require-dev": {
"ezsystems/ezplatform-code-style": "^0.2.0",
"friendsofphp/php-cs-fixer": "^2.16.3",
"phpunit/phpunit": "^6.4 || ^7.0"
},
"scripts": {
"fix-cs": "@php ./vendor/bin/php-cs-fixer fix -v --show-progress=estimating"
},
"extra": {
"branch-alias": {
"dev-master": "3.1.x-dev"
}
}
}