forked from bpolaszek/doctrine-safe-events
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
52 lines (52 loc) · 1.38 KB
/
composer.json
File metadata and controls
52 lines (52 loc) · 1.38 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
52
{
"name": "bentools/doctrine-safe-events",
"description": "Fires postPersist / postUpdate / postRemove events AFTER the transaction has completed.",
"type": "library",
"require": {
"php": ">=7.4",
"doctrine/orm": "~2.0"
},
"require-dev": {
"doctrine/annotations": "~1.0",
"matthiasnoback/doctrine-orm-test-service-provider": "^3.0",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.8",
"squizlabs/php_codesniffer": "^3.7",
"symfony/cache": "~5.4|~6.2",
"symfony/var-dumper": "@stable"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Bentools\\DoctrineSafeEvents\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bentools\\DoctrineSafeEvents\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Beno!t POLASZEK",
"email": "bpolaszek@gmail.com"
}
],
"scripts": {
"lint": "vendor/bin/phpcbf",
"test:lint": "vendor/bin/phpcs",
"test:types": "vendor/bin/phpstan",
"test:unit": "vendor/bin/pest --coverage --min=100",
"test": [
"@test:lint",
"@test:types",
"@test:unit"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}