generated from longitude-one/symfony-bundle-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.18 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
79
{
"name": "longitude-one/property-bundle",
"description": "A Symfony bundle to dynamically add properties to entities",
"type": "bundle",
"license": "MIT",
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/flex": true,
"symfony/runtime": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": "vendor/"
},
"require": {
"php": "^8.1",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/orm": "^2.14",
"symfony/form": "^6.2",
"symfony/http-kernel": "^6.2"
},
"autoload": {
"psr-4": {
"LongitudeOne\\PropertyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LongitudeOne\\PropertyBundle\\Tests\\Unit\\": "tests/Unit",
"LongitudeOne\\PropertyBundle\\Tests\\Functional\\": "tests/Functional",
"LongitudeOne\\PropertyBundle\\Tests\\Application\\": "tests/Application",
"LongitudeOne\\PropertyBundle\\Tests\\Tools\\": "tests/Tools",
"LongitudeOne\\PropertyBundle\\Tests\\App\\": "tests/App/src"
}
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.4",
"easycorp/easyadmin-bundle": "^4.5",
"jetbrains/phpstorm-attributes": "^1.0",
"phpstan/phpstan-doctrine": "^1.3.29",
"phpunit/phpunit": "^9.5",
"symfony/asset": "^6.2",
"symfony/browser-kit": "^6.2",
"symfony/console": "^6.2",
"symfony/css-selector": "^6.2",
"symfony/flex": "^2",
"symfony/framework-bundle": "^6.2",
"symfony/maker-bundle": "^1.48",
"symfony/phpunit-bridge": "^6.2",
"symfony/process": "^6.2",
"symfony/runtime": "^6.2",
"symfony/security-bundle": "^6.2",
"symfony/stopwatch": "^6.2",
"symfony/twig-bundle": "^6.2",
"symfony/web-profiler-bundle": "^6.2",
"symfony/yaml": "^6.2",
"twig/extra-bundle": "^3.5",
"twig/twig": "^3.5"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"suggest": {
"easycorp/easyadmin-bundle": "^4.4"
},
"extra": {
"symfony": {
"docker": false
},
"public-dir": "tests/App/public"
}
}