-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
42 lines (42 loc) · 1.02 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
{
"name" : "tomatom/atom-bundle",
"description" : "Symfony bundle",
"type" : "symfony-bundle",
"authors" : [{
"name" : "Tom Atom",
"email" : "[email protected]"
}],
"keywords" : [
"symfony atom bundle front-end editor"
],
"license" : "MIT",
"require" : {
"php": ">=8.1",
"doctrine/orm": "^2",
"gedmo/doctrine-extensions": "^3",
"knplabs/doctrine-behaviors": "^2",
"symfony/framework-bundle": "^6",
"symfony/security-bundle": "^6",
"symfony/twig-bundle": "^6",
"symfony/http-client": "^6",
"twig/cache-extra": "^3",
"deeplcom/deepl-php": "^1.9",
"nyholm/psr7": "^1.8"
},
"autoload" : {
"psr-4" : {
"TomAtom\\AtomBundle\\": "src/"
}
},
"extra" : {
"branch-alias" : {
"dev-master" : "1.0-dev"
},
"public-dir": "public"
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}