-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 1.59 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
{
"name": "huluti/doctrine-relations-analyser",
"description": "A Symfony bundle that provides tools for analyzing Doctrine relationships",
"homepage": "https://github.com/Huluti/DoctrineRelationsAnalyser",
"license": "MIT",
"keywords": [
"bundle",
"symfony",
"doctrine",
"relations"
],
"type": "symfony-bundle",
"authors": [
{
"name": "Hugo Posnic",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"DoctrineRelationsAnalyserBundle\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DoctrineRelationsAnalyserBundle\\Tests\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"symfony/console": "^6.4|^7.0",
"symfony/http-kernel": "^6.4|^7.0",
"doctrine/orm": "^2.0|^3.0",
"symfony/dependency-injection": "^6.4|^7.0",
"graphp/graphviz": "^1@dev",
"graphp/graph": "^1@dev",
"symfony/filesystem": "^6.4|^7.0",
"symfony/framework-bundle": "^6.4|^7.0",
"doctrine/doctrine-bundle": "^2.12"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.59",
"phpstan/phpstan": "^1.11",
"phpunit/phpunit": "^9",
"symfony/phpunit-bridge": "^6.4|^7.0",
"symfony/yaml": "^6.4|^7.0"
},
"config": {
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}