-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
76 lines (76 loc) · 2.59 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
{
"name": "araise/crud-bundle",
"type": "symfony-bundle",
"description": "Very simple CRUD operations",
"license": "MIT",
"homepage": "https://araise.dev",
"minimum-stability": "stable",
"keywords": [
"symfony-ux"
],
"authors": [
{
"name": "whatwedo GmbH",
"email": "welove@whatwedo.ch"
}
],
"require": {
"php": ">=8.1",
"symfony/framework-bundle": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"symfony/security-bundle": "^6.4|^7.0",
"symfony/serializer": "^6.4|^7.0",
"symfony/form": "^6.4|^7.0",
"symfony/twig-bundle": "^6.4|^7.0",
"symfony/process": "^6.4|^7.0",
"symfony/ux-turbo": "^2.0",
"symfony/stimulus-bundle": "^2.0",
"symfony/webpack-encore-bundle": "^1.14|^2.1",
"araise/core-bundle": "^1.1",
"araise/table-bundle": "^1.1",
"araise/search-bundle": "^3.1",
"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|^3.1",
"doctrine/annotations": "^1.13.2|^2.0",
"lasserafn/php-initial-avatar-generator": "^4.3"
},
"require-dev": {
"araise/core-bundle": "dev-develop as 1.1",
"araise/table-bundle": "dev-develop as 1.1",
"araise/search-bundle": "dev-develop as 3.1",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/config": "^6.4|^7.0",
"symfony/dependency-injection": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0",
"symfony/validator": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.5",
"whatwedo/php-coding-standard": "^1.0",
"zenstruck/foundry": "^2.0",
"zenstruck/console-test": "^v1.1.0",
"symfony/translation": "^6.4|^7.0",
"gedmo/doctrine-extensions": "^3.15",
"symfony/dotenv": "^6.4|^7.0",
"symfony/runtime": "^6.4|^7.0",
"phpstan/phpstan": "^1.5",
"mhujer/breadcrumbs-bundle": "^1.5",
"whatwedo/twig-bootstrap-icons": "^1.0"
},
"suggest": {
"mhujer/breadcrumbs-bundle": "Allows creation of breadcrumbs"
},
"autoload": {
"psr-4": {
"araise\\CrudBundle\\": "src/",
"araise\\CrudBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/runtime": true
}
}
}