-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 1022 Bytes
/
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
{
"name": "nightjar/ss-slug",
"description": "Serve DataObjects as pages through an Action on a relation's Controller without referencing the ID",
"type": "silverstripe-vendormodule",
"keywords": ["silverstripe","extension","slug"],
"license": "MIT",
"authors": [
{
"name": "Nightjar"
}
],
"support": {
"issues": "https://github.com/Nightjar/ssrigging-slug/issues",
"irc": "irc://chat.freenode.org/silverstripe",
"slack": "https://silverstripe-users.slack.com"
},
"require": {
"silverstripe/framework": "^4||^5"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^3.0"
},
"autoload": {
"psr-4": {
"Nightjar\\Slug\\": "src/",
"Nightjar\\Slug\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}