-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
34 lines (34 loc) · 1019 Bytes
/
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
{
"name": "w3c/lifecycle-events-bundle",
"type": "symfony-bundle",
"description": "A Symfony bundle to dispatch usable entity lifecycle events (create, update, delete)",
"keywords": ["lifecycle", "events", "domain"],
"homepage": "https://github.com/w3c/W3CLifecycleEventsBundle",
"license": "W3C",
"authors": [
{
"name": "Jean-Guilhem Rouel",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.2",
"symfony/http-kernel": "^7.0",
"symfony/config": "^7.0",
"symfony/dependency-injection": "^7.0",
"symfony/yaml": "^7.0",
"symfony/event-dispatcher": "^7.0",
"doctrine/orm": "^3.0",
"doctrine/persistence": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.25",
"symfony/phpunit-bridge": "^6.0",
"php-coveralls/php-coveralls": "^2.0"
},
"autoload": {
"psr-4": {
"W3C\\LifecycleEventsBundle\\": ""
}
}
}