This repository has been archived by the owner on Nov 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
68 lines (68 loc) · 1.92 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
{
"name": "kunicmarko/sonata-annotation-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle that adds annotations for Sonata Admin.",
"keywords": [
"symfony",
"sonata",
"sonata-admin",
"annotations"
],
"homepage": "https://github.com/kunicmarko20/SonataAnnotationBundle",
"license": "MIT",
"authors": [
{
"name": "Marko Kunic",
"email": "[email protected]",
"homepage": "https://twitter.com/kunicmarko20"
}
],
"require": {
"php": "^7.1",
"doctrine/annotations": "^1.6",
"sonata-project/admin-bundle": "^3.35",
"symfony/config": "^3.4 || ^4.0",
"symfony/dependency-injection": "^3.4 || ^4.0",
"symfony/finder": "^3.4 || ^4.0",
"symfony/http-kernel": "^3.4 || ^4.0"
},
"conflict": {
"sonata-project/admin-bundle": "<3.35"
},
"require-dev": {
"behat/behat": "^3.5",
"behat/mink": "1.7.x-dev",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"behat/mink-selenium2-driver": "^1.3",
"behat/symfony2-extension": "^2.1",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^3.0",
"phpstan/phpstan-phpunit": "^0.11.2",
"sonata-project/doctrine-orm-admin-bundle": "^3.6",
"symfony/framework-bundle": "^3.4 || ^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/var-dumper": "^3.4 || ^4.0"
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"autoload": {
"psr-4": {
"KunicMarko\\SonataAnnotationBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"KunicMarko\\SonataAnnotationBundle\\Tests\\": "tests/",
"KunicMarko\\SonataAnnotationBundle\\Features\\Fixtures\\Project\\": "features/Fixtures/Project/src",
"KunicMarko\\SonataAnnotationBundle\\Features\\": "features/"
}
}
}