-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.34 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.34 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
{
"name": "darkwebdesign/doctrine-enhanced-events",
"description": "Doctrine Enhanced Events",
"type": "library",
"keywords": ["doctrine", "events"],
"homepage": "http://www.darkwebdesign.nl/",
"license": "MIT",
"authors": [
{
"name": "Raymond Schouten"
}
],
"require": {
"php": ">=7.2",
"doctrine/event-manager": "^1.1",
"doctrine/orm": "2.11.*",
"doctrine/persistence": "^2.2"
},
"require-dev": {
"doctrine/cache": "^1.13",
"doctrine/data-fixtures": "^1.5",
"friendsofphp/php-cs-fixer": "^3.4",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-doctrine": "^1.5",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^8.5",
"rector/rector": "^1.2"
},
"suggest": {
"darkwebdesign/doctrine-enhancement-pack": "All Doctrine enhancements bundled together"
},
"autoload": {
"psr-4": {
"DarkWebDesign\\DoctrineEnhancedEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DarkWebDesign\\DoctrineEnhancedEvents\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"phpstan/extension-installer": true
},
"sort-packages": true
}
}