forked from brettt89/silverstripe-garbage-collector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.32 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.32 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
{
"name": "brettt89/silverstripe-garbage-collector",
"description": "SilverStripe Garbage Collector module",
"keywords": ["silverstripe", "garbage", "collector", "versions", "versioning", "pruning", "pruner", "obsolete", "database", "stale"],
"license": "MIT",
"autoload": {
"psr-4": {
"SilverStripe\\GarbageCollector\\": "src/",
"SilverStripe\\GarbageCollector\\Tests\\": "tests/php/"
}
},
"authors": [
{
"name": "Brett Tasker",
"email": "brett.tasker@gmail.com"
}
],
"require": {
"php": "~8.0",
"silverstripe/framework": "^4.13 | ^5"
},
"require-dev": {
"phpunit/phpunit": "^9.6.13",
"squizlabs/php_codesniffer": "^3",
"tractorcow/silverstripe-fluent": "^5.0 | ^6 | ^7",
"silverstripe/versioned": "^1.8 | ^2",
"symbiote/silverstripe-queuedjobs": "^4.7 | ^5"
},
"suggest": {
"symbiote/silverstripe-queuedjobs": "For usage of the GarbageCollectorJob within your application"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}