-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.33 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.33 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
48
49
50
51
52
53
54
55
56
57
{
"name" : "thecodingmachine/tdbm-bundle",
"description" : "A Symfony bundle for TDBM.",
"keywords" : [
"ORM",
"persistence",
"DAO",
"bean",
"model",
"TDBM",
"Symfony",
"bundle"
],
"homepage" : "https://thecodingmachine.github.io/tdbm",
"type" : "symfony-bundle",
"license" : "MIT",
"authors" : [{
"name" : "David Négrier",
"email" : "[email protected]",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php": "^8.0",
"thecodingmachine/tdbm": "~6.0.0",
"doctrine/doctrine-bundle": "^2.2.2",
"doctrine/orm": "^2",
"symfony/http-kernel": "^5.0 || ^6.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"symfony/security-bundle": "^5 || ^6",
"symfony/yaml": "^5 || ^6",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^2.0",
"thecodingmachine/tdbm-fluid-schema-builder": "^1.0 || ^2.0",
"symfony/framework-bundle": "^5.1 || ^6"
},
"scripts": {
"phpstan": "phpstan analyse TdbmBundle.php DependencyInjection/ Utils/ --level=8 --no-progress"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\TDBM\\Bundle\\" : ""
}
},
"autoload-dev" : {
"psr-4" : {
"TheCodingMachine\\TDBM\\Bundle\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "6.0.x-dev"
}
}
}