-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "jorrit/sonata-clone-action-bundle",
"description": "Sonata Admin extension that adds a clone action.",
"keywords": [
"sonata",
"admin",
"extension",
"clone"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jorrit Schippers",
"email": "jorrit@ncode.nl"
}
],
"require": {
"php": "^7.2 || ^8.0",
"sonata-project/admin-bundle": "^3.84.0 || ^4.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.1.5",
"symfony/property-access": "^4.4 || ^5.0",
"symfony/property-info": "^4.4 || ^5.0"
},
"require-dev": {
"doctrine/orm": "^2.8",
"gedmo/doctrine-extensions": "^2.3.4 || ^3.0",
"sonata-project/translation-bundle": "^2.7 || ^3.0"
},
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"Jorrit\\SonataCloneActionBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jorrit\\SonataCloneActionBundle\\Tests\\": "tests/"
}
}
}