forked from sonata-project/EntityAuditBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.62 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "sonata-project/entity-audit-bundle",
"description": "Audit for Doctrine Entities",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"Persistence",
"Database",
"Audit"
],
"require": {
"php": "^7.4 || ^8.0",
"doctrine/collections": "^1.6",
"doctrine/common": "^3.1",
"doctrine/dbal": "^2.13 || ^3.0",
"doctrine/event-manager": "^1.1",
"doctrine/orm": "^2.10",
"doctrine/persistence": "^2.2 || ^3.0",
"symfony/config": "^4.4 || ^5.4 || ^6.0",
"symfony/dependency-injection": "^4.4 || ^5.4 || ^6.0",
"symfony/http-kernel": "^4.4 || ^5.4 || ^6.0",
"symfony/security-core": "^4.4 || ^5.4 || ^6.0",
"twig/twig": "^2.6 || ^3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.4.4",
"doctrine/doctrine-fixtures-bundle": "^3.4",
"friendsofphp/php-cs-fixer": "^3.4",
"gedmo/doctrine-extensions": "^3.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-doctrine": "^1.3.12",
"phpstan/phpstan-phpunit": "^1.0",
"phpstan/phpstan-strict-rules": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpunit/phpunit": "^9.5.13",
"psalm/plugin-phpunit": "^0.17",
"psalm/plugin-symfony": "^3.0",
"rector/rector": "^0.14",
"symfony/browser-kit": "^4.4 || ^5.4 || ^6.0",
"symfony/cache": "^4.4 || ^5.4 || ^6.0",
"symfony/filesystem": "^4.4 || ^5.4 || ^6.0",
"symfony/framework-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/http-foundation": "^4.4 || ^5.4 || ^6.0",
"symfony/phpunit-bridge": "^6.1",
"symfony/security-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/twig-bundle": "^4.4 || ^5.4 || ^6.0",
"symfony/var-dumper": "^4.4 || ^5.4 || ^6.0",
"vimeo/psalm": "^4.8",
"weirdan/doctrine-psalm-plugin": "^2.0"
},
"conflict": {
"doctrine/annotations": "<1.7",
"doctrine/doctrine-bundle": "<2.4.4",
"gedmo/doctrine-extensions": "<3.0",
"symfony/framework-bundle": "<4.4"
},
"autoload": {
"psr-4": {
"SimpleThings\\EntityAudit\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sonata\\EntityAuditBundle\\Tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"phpstan/extension-installer": true
},
"sort-packages": true
}
}