-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
56 lines (56 loc) · 1.72 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
{
"name": "dualmedia/symfony-doctrine-event-converter-bundle",
"description": "A symfony bundle for creating symfony events out of doctrine changes",
"type": "symfony-bundle",
"license": "MIT",
"autoload": {
"psr-4": {
"DualMedia\\DoctrineEventConverterBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DualMedia\\DoctrineEventConverterBundle\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "pkly",
"homepage": "https://github.com/pkly",
"role": "Author"
},
{
"name": "Bartosz Urbaniak <barturb>",
"homepage": "https://github.com/barturb",
"role": "Bug fixes and general help"
}
],
"require": {
"php": "^8.1",
"doctrine/doctrine-bundle": "^1.12|^2.0",
"doctrine/orm": "^2.14|^3",
"symfony/framework-bundle": "^5.4|^6.2|^7",
"symfony/event-dispatcher": "^5.4|^6.2|^7",
"symfony/property-access": "^5.4|^6.2|^7",
"symfony/http-kernel": "^5.4|^6.2|^7",
"doctrine/common": "^2|^3"
},
"require-dev": {
"dama/doctrine-test-bundle": "^8|^7",
"doctrine/doctrine-fixtures-bundle": "^3",
"friendsofphp/php-cs-fixer": "^3",
"pedrotroller/php-cs-custom-fixer": "^2",
"phpunit/phpunit": "^10",
"vimeo/psalm": "^5",
"phpstan/phpstan": "^1",
"matthiasnoback/symfony-dependency-injection-test": "^5",
"jetbrains/phpstorm-attributes": "^1.0",
"pkly/phpunit-service-create-trait": "^1.0"
},
"extra": {
"symfony": {
"require": "5.4.*",
"allow-contrib": false
}
}
}