-
Notifications
You must be signed in to change notification settings - Fork 48
/
composer.json
60 lines (60 loc) · 1.64 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
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "silverstripe/redirectedurls",
"description": "Provides a system for users to configure arbitrary redirections in the CMS",
"license": "BSD-3-Clause",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"urls",
"redirectedurls",
"redirect"
],
"authors": [
{
"name": "Sam Minnee",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"silverstripe/cms": "^5",
"unclecheese/display-logic": "^3"
},
"require-dev": {
"silverstripe/recipe-testing": "^3",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"SilverStripe\\RedirectedURLs\\": "src/",
"SilverStripe\\RedirectedURLs\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"silverstripe/vendor-plugin": true
}
},
"extra": {
"expose": [
"images"
],
"branch-alias": {
"dev-master": "3.x-dev"
},
"project-files-installed": [
"behat.yml",
"phpcs.xml.dist",
"phpunit.xml.dist"
]
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test-phpunit": "phpunit -d memory_limit=512M -d flush=1",
"phpcs": "phpcs src tests --standard=phpcs.xml --extensions=php --encoding=utf-8",
"phpcbf": "phpcbf src tests --standard=phpcs.xml --extensions=php --encoding=utf-8"
}
}