-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
34 lines (34 loc) · 1.09 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
{
"name": "hostnet/entity-mutation-component",
"description": "Listens to an event so mutations can be made",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.3||^8.0",
"doctrine/orm": "^2.7.4",
"hostnet/entity-tracker-component": "^2.0.1"
},
"require-dev": {
"hostnet/database-test-lib": "^2.0.2",
"hostnet/phpcs-tool": "^9.1.0",
"phpunit/phpunit": "^9.5.6",
"symfony/cache": "^5.3"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\EntityMutation\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Functional\\Entity\\": "test/Functional/Entity/",
"Hostnet\\Component\\EntityMutation\\": "test/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"hostnet/*": true
}
}
}