-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
53 lines (53 loc) · 1.44 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
{
"name": "silverstripe/upgrader",
"description": "A tool to help upgrade your code to handle API changes in packages you used.",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sam Minnee",
"email": "sam@silverstripe.com"
}
],
"require": {
"php": "^7.1",
"nikic/php-parser": "^3.1",
"symfony/console": "^3.2 || ^4",
"symfony/yaml": "^3.2",
"phpspec/php-diff": "^1",
"phpstan/phpstan": "~0.9.0",
"phpstan/phpstan-php-parser": "~0.9.0",
"m1/env": "^2.1",
"ext-json": "*",
"composer/semver": "^1.4",
"guzzlehttp/guzzle": "^6.3",
"symfony/process": "^3.2 || ^4",
"symfony/filesystem": "^3.2 || ^4",
"padraic/phar-updater": "^1.0"
},
"bin": [
"bin/upgrade-code"
],
"require-dev": {
"phpunit/phpunit": "^7",
"mikey179/vfsstream": "^1.6",
"secondtruth/phar-compiler": "^1.1",
"roave/security-advisories": "dev-master"
},
"extra": {
"branch-alias": {
"dev-master": "1.3.x-dev"
}
},
"autoload": {
"psr-4": {
"SilverStripe\\Upgrader\\": "src/",
"SilverStripe\\Upgrader\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "phpcs src/ tests/",
"lint-clean": "phpcbf src/ tests/"
},
"minimum-stability": "dev",
"prefer-stable": true
}