-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathcomposer.json
42 lines (42 loc) · 1.14 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
41
42
{
"name": "sminnee/silverstripe-apikey",
"description": "API Key management for Silverstripe CMS",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sam Minnee",
"email": "[email protected]"
}
],
"type": "silverstripe-vendormodule",
"require": {
"silverstripe/framework": "^4 || ^5",
"silverstripe/graphql": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
"silverstripe/vendor-plugin": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"silverstripe/versioned": "^2.1"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"autoload": {
"psr-4": {
"Sminnee\\ApiKey\\": "src/",
"Sminnee\\ApiKey\\Tests\\": "tests/unit/"
}
},
"scripts": {
"testCoverage": "phpdbg -qrr -d memory_limit=-1 vendor/bin/phpunit --coverage-html=tests/coverage"
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/recipe-plugin": true,
"silverstripe/vendor-plugin": true
}
}
}