-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.38 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.38 KB
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
78
79
80
81
{
"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": "pierre@snowcap.be"
},
{
"name": "Edwin Hermans",
"email": "edwin@snowcap.be"
},
{
"name": "Jérôme Poskin",
"email": "jerome@snowcap.be"
},
{
"name": "Snowcap",
"homepage": "https://www.snowcap.be"
}
],
"minimum-stability": "stable",
"require": {
"php": "^8.4",
"doctrine/orm": "^3.0",
"symfony/deprecation-contracts": "^3.5",
"symfony/event-dispatcher": "^7.4 || ^8.0",
"symfony/form": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/http-foundation": "^7.4 || ^8.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/mime": "^7.4 || ^8.0",
"symfony/routing": "^7.4 || ^8.0",
"symfony/translation": "^7.4 || ^8.0",
"symfony/twig-bundle": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0",
"twig/twig": "^3.23"
},
"require-dev": {
"doctrine/data-fixtures": "^1.6 || ^2.2",
"doctrine/persistence": "^4.0",
"easycorp/easyadmin-bundle": "^5.0.0",
"endroid/qr-code": "^6.0",
"fakerphp/faker": "^1.23",
"google/recaptcha": "^1.3",
"league/flysystem-bundle": "^3.0",
"phpstan/phpstan": "^2.1.40",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpunit/phpunit": "^13.0.5",
"symfony/browser-kit": "^7.4 || ^8.0",
"symplify/easy-coding-standard": "^13.0.4"
},
"config": {
"sort-packages": true
},
"scripts": {
"ci": [
"@cs:dry",
"@phpstan",
"@phpunit"
],
"cs:dry": "@php vendor/bin/ecs",
"cs:fix": "@php vendor/bin/ecs --fix",
"phpstan": "@php vendor/bin/phpstan analyse --ansi",
"phpunit": "@php vendor/bin/phpunit --colors=auto"
},
"autoload": {
"psr-4": {
"Leapt\\CoreBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Leapt\\CoreBundle\\Tests\\": "tests/"
}
}
}