-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
51 lines (51 loc) · 1.68 KB
/
Copy pathcomposer.json
File metadata and controls
51 lines (51 loc) · 1.68 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
{
"name": "itk-dev/entity-bundle",
"description": "Cross-cutting entity foundation: ULID id, timestamps, blame, soft-delete, archivable, audit log auto-wiring, privacy anonymization with retention.",
"license": "MPL-2.0",
"type": "symfony-bundle",
"require": {
"php": ">=8.4",
"damienharper/auditor-bundle": "^6.3",
"doctrine/doctrine-bundle": "^2.13 || ^3.0",
"doctrine/orm": "^3.0",
"symfony/clock": "^7.4 || ^8.0",
"symfony/finder": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/security-bundle": "^7.4 || ^8.0",
"symfony/uid": "^7.4 || ^8.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.52",
"friendsofphp/php-cs-fixer": "^3.95",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.2",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^13.1",
"rregeer/phpunit-coverage-check": "^0.3.1",
"symfony/browser-kit": "^7.4 || ^8.0",
"symfony/dotenv": "^7.4 || ^8.0",
"symfony/yaml": "^8.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ITKDev\\EntityBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ITKDev\\EntityBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"symfony/flex": true,
"symfony/runtime": true
},
"sort-packages": true
}
}