-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
36 lines (36 loc) · 1.11 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
{
"name": "hostnet/entity-tracker-component",
"description": "Provides an event when a Tracked entity changes",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.3|^8.0",
"doctrine/annotations": "1.*,>=1.2.0",
"doctrine/common": "^2.13.3|^3.0.0",
"doctrine/orm": "^2.7.5",
"psr/log": "^1.0.0"
},
"require-dev": {
"hostnet/database-test-lib": "^2.0.2",
"hostnet/phpcs-tool": "^9.1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.4",
"symfony/cache": "^5.3"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\EntityTracker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Component\\EntityTracker\\": "test/"
}
},
"config": {
"allow-plugins": {
"hostnet/*": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}