-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 788 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 788 Bytes
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
{
"name": "thomasdcodes/toolbox-bundle",
"description": "Gives a toolbox with a lot of helper classes and functionality needed in every project.",
"keywords": ["toolbox", "class collection", "helper classes"],
"type": "symfony-bundle",
"version": "0.3.0",
"license": "MIT",
"authors": [
{
"name": "Thomas Deutschländer",
"email": "me@thomasd.codes"
}
],
"require": {
"php": ">=8.2",
"symfony/framework-bundle": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/uid": "^7.0",
"doctrine/orm": "^3.0",
"symfony/twig-bundle": "^7.3",
"twig/markdown-extra": "^3.21",
"league/commonmark": "^2.7"
},
"autoload": {
"psr-4": {
"Tdc\\ToolboxBundle\\": "./src"
}
}
}