forked from stof/StofDoctrineExtensionsBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.95 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.95 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
{
"name": "stof/doctrine-extensions-bundle",
"type": "symfony-bundle",
"description": "Integration of the gedmo/doctrine-extensions with Symfony",
"keywords": ["tree", "behaviors", "doctrine2", "extensions", "gedmo", "sluggable","loggable", "translatable", "nestedset", "sortable", "timestampable"],
"homepage": "https://github.com/stof/StofDoctrineExtensionsBundle",
"license": "MIT",
"authors": [
{
"name": "Christophe Coevoet",
"email": "stof@notk.org"
}
],
"require": {
"php": "^8.1",
"gedmo/doctrine-extensions": "^3.21.0",
"symfony/cache": "^6.4 || ^7.0 || ^8.0",
"symfony/config": "^6.4 || ^7.0 || ^8.0",
"symfony/dependency-injection": "^6.4 || ^7.0 || ^8.0",
"symfony/event-dispatcher": "^6.4 || ^7.0 || ^8.0",
"symfony/http-kernel": "^6.4 || ^7.0 || ^8.0",
"symfony/translation-contracts": "^2.5 || ^3.5"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^9.6.31",
"symfony/mime": "^6.4 || ^7.0 || ^8.0",
"symfony/phpunit-bridge": "^v6.4.1 || ^7.0.1 || ^8.0",
"symfony/security-core": "^6.4 || ^7.0 || ^8.0"
},
"suggest": {
"doctrine/doctrine-bundle": "to use the ORM extensions",
"doctrine/mongodb-odm-bundle": "to use the MongoDB ODM extensions",
"symfony/mime": "To use the Mime component integration for Uploadable"
},
"autoload": {
"psr-4": { "Stof\\DoctrineExtensionsBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Stof\\DoctrineExtensionsBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}