forked from symbiote/silverstripe-datachange-tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (39 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
35
36
37
38
39
40
{
"name": "symbiote/silverstripe-datachange-tracker",
"description": "Record and track changes to any dataobjects. View chages/diffs in model admin.",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe", "data", "tracker"],
"homepage": "http://github.com/symbiote/silverstripe-datachange-tracker",
"authors": [
{
"name": "Marcus Nyeholt",
"email": "marcus@symbiote.com.au"
}
],
"require": {
"silverstripe/framework": "^4.12 || ^5"
},
"require-dev": {
"phpunit/phpunit": "^9.6"
},
"extra": {
"expose": [
"client"
],
"branch-alias": {
"dev-master": "5.0.x-dev"
}
},
"replace": {
"sheadawson/silverstripe-datachange-tracker": "self.version",
"silverstripe-australia/datachange-tracker": "self.version"
},
"autoload": {
"psr-4": {
"Symbiote\\DataChange\\": "src/",
"Symbiote\\DataChange\\Tests\\": "tests/"
}
},
"prefer-stable": true,
"minimum-stability": "dev"
}