-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
33 lines (33 loc) · 1.03 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
{
"name": "lexik/cron-file-generator-bundle",
"description": "This bundle provides service for generate cron file",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Gilles Gauthier",
"email": "g.gauthier@lexik.fr",
"homepage": "https://github.com/spike31"
}
],
"require": {
"php": ">=7.2",
"symfony/console": "^4.4|^5.4|^6.0|^7.0",
"symfony/framework-bundle": "^4.4|^5.4|^6.0|^7.0",
"symfony/twig-bundle": "^4.4|^5.4|^6.0|^7.0",
"twig/twig": "^v2.14.0|^3.0"
},
"require-dev": {
"symfony/phpunit-bridge": "^7.0.1",
"symfony/yaml": "^4.4|^5.4|^6.0|^7.0",
"symfony/var-dumper": "^4.4|^5.4|^6.0|^7.0"
},
"autoload": {
"psr-4": { "Lexik\\Bundle\\CronFileGeneratorBundle\\": "" },
"exclude-from-classmap": ["/Tests/"]
},
"scripts": {
"test": "vendor/bin/simple-phpunit",
"cs-fix": "vendor/bin/php-cs-fixer fix --diff --allow-risky yes"
}
}