-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.15 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.15 KB
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
{
"name": "mindy/orm-bundle",
"type": "symfony-bundle",
"description": "Mindy OrmBundle",
"keywords": [
"orm"
],
"license": "MIT",
"authors": [
{
"name": "Falaleev Maxim",
"email": "max@studio107.ru"
}
],
"require": {
"php": ">=7.0",
"mindy/orm": ">=4.0.3",
"mindy/orm-nested-set": "~4.0",
"mindy/orm-slug-field": "~4.0",
"mindy/orm-fields": "~4.0",
"mindy/orm-file-field": "~4.0"
},
"require-dev": {
"phpunit/phpunit": "^6.5",
"symfony/config": "~3.0|~4.0",
"symfony/dependency-injection": "~3.0|~4.0",
"symfony/framework-bundle": "~3.0|~4.0",
"symfony/var-dumper": "~3.0|~4.0",
"symfony/yaml": "~3.0|~4.0"
},
"suggest": {
"mindy/migration-bundle": "Migrations for Mindy ORM"
},
"autoload": {
"psr-4": {
"Mindy\\Bundle\\OrmBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"autoload-dev": {
"psr-4": {
"Mindy\\Bundle\\OrmBundle\\Tests\\": "./Tests/"
}
}
}