-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
59 lines (59 loc) · 1.4 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
{
"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" : "d.negrier@thecodingmachine.com",
"homepage" : "http://mouf-php.com"
}
],
"require" : {
"php": "^7.4 || ^8.0",
"thecodingmachine/tdbm": "~5.3.0",
"doctrine/doctrine-bundle": "^2",
"doctrine/orm": "^2",
"symfony/http-kernel": "^4.1.9 || ^5"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"symfony/security-bundle": "^4.1.9 || ^5",
"symfony/yaml": "^4.1.9 || ^5",
"phpunit/phpunit": "^9.5",
"phpstan/phpstan": "^1.2",
"thecodingmachine/tdbm-fluid-schema-builder": "^1.0.0",
"symfony/framework-bundle": "^5.2"
},
"scripts": {
"phpstan": "phpstan analyse TdbmBundle.php DependencyInjection/ Utils/ -c phpstan.neon --level=8 --no-progress"
},
"autoload" : {
"psr-4" : {
"TheCodingMachine\\TDBM\\Bundle\\" : ""
}
},
"autoload-dev" : {
"psr-4" : {
"TheCodingMachine\\TDBM\\Bundle\\" : ""
}
},
"extra": {
"branch-alias": {
"dev-master": "5.3.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}