This repository has been archived by the owner on May 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
78 lines (77 loc) · 2.63 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
78
{
"name": "whatwedo/crud-bundle",
"type": "symfony-bundle",
"description": "Very simple CRUD operations",
"license": "MIT",
"homepage": "https://whatwedo.github.io/CrudBundle/#/",
"keywords": [
"symfony-ux"
],
"authors": [
{
"name": "whatwedo GmbH",
"email": "welove@whatwedo.ch"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/http-kernel": "^5.4|^6.0",
"symfony/security-bundle": "^5.4|^6.0",
"symfony/serializer": "^5.4|^6.0",
"symfony/form": "^5.4|^6.0",
"symfony/twig-bundle": "^5.4|^6.0",
"symfony/process": "^5.4|^6.0",
"symfony/ux-turbo": "^2.0",
"symfony/webpack-encore-bundle": "^1.14",
"whatwedo/core-bundle": "1.0",
"whatwedo/table-bundle": "1.0",
"whatwedo/search-bundle": "3.0",
"knplabs/knp-menu-bundle": "~v3.2.0",
"doctrine/inflector": "^2.0",
"symfony/maker-bundle": "^1.0.0",
"twig/twig": "^3.4.3|^2.15.3",
"doctrine/orm": "^2.13.3",
"coduo/php-to-string": "^3.2"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.4|^6.0",
"symfony/config": "^5.4|^6.0",
"symfony/dependency-injection": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0",
"symfony/validator": "^5.4|^6.0",
"nyholm/symfony-bundle-test": "^1.8",
"doctrine/doctrine-bundle": "^2.5",
"doctrine/annotations": "^1.13.2",
"whatwedo/php-coding-standard": "^1.0",
"zenstruck/foundry": "^1.16",
"zenstruck/console-test": "^v1.1.0",
"symfony/orm-pack": "^1.0",
"symfony/translation": "^5.4|^6.0",
"gedmo/doctrine-extensions": "^3.5",
"symfony/dotenv": "^5.4|^6.0",
"symfony/test-pack": "^1.0",
"symfony/runtime": "^5.4|^6.0",
"phpstan/phpstan": "^1.5",
"mhujer/breadcrumbs-bundle": "^1.5",
"whatwedo/twig-bootstrap-icons": "^1.0",
"whatwedo/core-bundle": "dev-1.0-dev as 1.0",
"whatwedo/table-bundle": "dev-1.0-dev as 1.0",
"whatwedo/search-bundle": "dev-3.0-dev as 3.0"
},
"suggest": {
"mhujer/breadcrumbs-bundle": "Allows creation of breadcrumbs"
},
"autoload": {
"psr-4": {
"whatwedo\\CrudBundle\\": "src/",
"whatwedo\\CrudBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
}
}
}