forked from leapt/core-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.32 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
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "leapt/core-bundle",
"type": "symfony-bundle",
"description": "Symfony LeaptCoreBundle",
"keywords": ["Utility"],
"homepage": "https://github.com/leapt/core-bundle",
"license": "MIT",
"authors": [
{
"name": "Pierre Vanliefland",
"email": "[email protected]"
},
{
"name": "Edwin Hermans",
"email": "[email protected]"
},
{
"name": "Jérôme Poskin",
"email": "[email protected]"
},
{
"name": "Snowcap",
"homepage": "https://www.snowcap.be"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.0",
"doctrine/orm": "^2.10",
"symfony/form": "^5.4 || ^6.0",
"symfony/framework-bundle": "^5.4 || ^6.0",
"symfony/http-foundation": "^5.4 || ^6.0",
"symfony/http-kernel": "^5.4 || ^6.0",
"symfony/mime": "^5.4 || ^6.0",
"symfony/routing": "^5.4 || ^6.0",
"symfony/translation": "^5.4 || ^6.0",
"symfony/twig-bundle": "^5.4 || ^6.0",
"symfony/validator": "^5.4 || ^6.0",
"twig/twig": "^3.0"
},
"require-dev": {
"doctrine/annotations": "^1.13",
"doctrine/data-fixtures": "^1.0",
"doctrine/persistence": "^2.0 || ^3.0",
"easycorp/easyadmin-bundle": "^4.3.3",
"endroid/qr-code": "^4.0",
"friendsofphp/php-cs-fixer": "^3.0.0",
"fakerphp/faker": "^1.16",
"google/recaptcha": "^1.2",
"league/flysystem-bundle": "^2.2",
"phpstan/phpstan": "^1.6.8",
"phpstan/phpstan-deprecation-rules": "^1.0.0",
"phpunit/phpunit": "^9.5.10",
"symfony/browser-kit": "^5.4 || ^6.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.3"
},
"scripts": {
"ci": [
"@cs:dry",
"@phpstan",
"vendor/bin/phpunit --colors=auto"
],
"cs:dry": "php-cs-fixer fix --diff --dry-run --no-interaction --ansi",
"cs:fix": "php-cs-fixer fix --ansi",
"phpstan": "vendor/bin/phpstan analyse --ansi"
},
"autoload": {
"psr-4": {
"Leapt\\CoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leapt\\CoreBundle\\Tests\\": "tests/"
}
}
}