forked from odorisioe/silverstripe-robots-txt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.03 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
43
44
45
46
47
{
"name": "odorisioe/silverstripe-robots-txt",
"type": "silverstripe-vendormodule",
"description": "Feature to manage the robots.txt on SilverStripe",
"keywords": [
"silverstripe",
"cms",
"robots",
"txt"
],
"require": {
"php": "^8.1",
"silverstripe/cms": "^4 || ^5"
},
"license": "BSD-2-Clause",
"authors": [
{
"name": "Emmanuel Odorisio",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^9.6",
"php-parallel-lint/php-parallel-lint": "^1.3",
"slevomat/coding-standard": "^8.8"
},
"autoload": {
"psr-4": {
"Odorisioe\\SilverStripe\\RobotsTxt\\": "src/",
"Odorisioe\\SilverStripe\\RobotsTxt\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"expose": [
"docs/en/screenshots"
]
}
}