-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
57 lines (57 loc) · 1.72 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
{
"name": "bringyourownideas/silverstripe-composer-update-checker",
"description": "Checks if any composer packages needs to be updated.",
"keywords": [
"composer",
"update",
"check"
],
"type": "silverstripe-vendormodule",
"license": "MIT",
"authors": [
{
"name": "Peter Thaleikis",
"homepage": "https://thaleikis.de"
},
{
"name": "Matt Dwen",
"email": "[email protected]",
"role": "Contributors"
},
{
"name": "Xplore Developers",
"email": "[email protected]",
"role": "Contributors"
},
{
"name": "Other contributors",
"homepage": "https://github.com/bringyourownideas/silverstripe-composer-update-checker/graphs/contributors",
"role": "Contributors"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.4 || ^8.0",
"composer/composer": "^2",
"silverstripe/framework": "^4.10",
"bringyourownideas/silverstripe-maintenance": "^2"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"BringYourOwnIdeas\\UpdateChecker\\": "src/",
"BringYourOwnIdeas\\UpdateChecker\\Tests\\": "tests/"
}
},
"replace": {
"spekulatius/silverstripe-composer-update-checker": "self.version"
},
"support": {
"issues": "https://github.com/bringyourownideas/silverstripe-composer-update-checker/issues"
},
"homepage": "https://github.com/bringyourownideas/silverstripe-composer-update-checker"
}