-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
60 lines (60 loc) · 1.88 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
{
"name": "ecommit/doctrine-entities-generator-bundle",
"description": "Generate Doctrine ORM entities.",
"keywords": ["doctrine", "entity", "generator", "getter", "setter", "symfony-bundle"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Hubert Lecorche",
"email": "contact@e-commit.fr"
}
],
"autoload": {
"psr-4": { "Ecommit\\DoctrineEntitiesGeneratorBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Ecommit\\DoctrineEntitiesGeneratorBundle\\Tests\\": "tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
},
"require": {
"php": "^8.1",
"ext-mbstring": "*",
"doctrine/collections": "^2.0",
"doctrine/doctrine-bundle": "^2.11.1",
"doctrine/inflector": "^1.4|^2.0",
"doctrine/orm": "^3.2",
"doctrine/persistence": "^3.1",
"nikic/php-parser": "^4.10|^5.0",
"symfony/config": "^6.4|^7.1",
"symfony/console": "^6.4|^7.1",
"symfony/dependency-injection": "^6.4|^7.1",
"symfony/doctrine-bridge": "^6.4|^7.1",
"symfony/framework-bundle": "^6.4|^7.1",
"symfony/http-kernel": "^6.4|^7.1",
"symfony/property-info": "^6.4|^7.1",
"symfony/twig-bundle": "^6.4|^7.1",
"twig/twig": "^2.12.0|^3.0"
},
"require-dev": {
"doctrine/dbal": "^3.6|^4.0",
"friendsofphp/php-cs-fixer": "^3.0",
"phpstan/extension-installer": "^1.2",
"phpstan/phpstan": "^1.9",
"phpstan/phpstan-symfony": "^1.2",
"phpunit/phpunit": "^9.5",
"symfony/filesystem": "^6.4|^7.1",
"symfony/finder": "^6.4|^7.1",
"symfony/yaml": "^6.4|^7.1"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
}
}