Skip to content

Commit 6c6f70a

Browse files
authored
Maestro updates configuration (#18)
1 parent 9f2c2ed commit 6c6f70a

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ jobs:
9292
-
9393
name: "Checkout code"
9494
uses: "actions/checkout@v2"
95-
9695
-
9796
name: "Install PHP"
9897
uses: "shivammathur/setup-php@v2"
@@ -107,7 +106,6 @@ jobs:
107106
uses: "ramsey/composer-install@v1"
108107
with:
109108
composer-options: "--no-scripts"
110-
111109
-
112110
name: "Run PHPUnit"
113111
run: "vendor/bin/phpunit"

composer.json

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,16 @@
1414
"webmozart/path-util": "^2.3"
1515
},
1616
"require-dev": {
17+
"ergebnis/composer-normalize": "^2.0",
18+
"friendsofphp/php-cs-fixer": "^2.17",
19+
"phpstan/phpstan": "~0.12.0",
1720
"phpunit/phpunit": "~7.0",
18-
"symfony/filesystem": "^3.2",
19-
"friendsofphp/php-cs-fixer": "~2.15.0",
20-
"phpstan/phpstan": "~0.12.0"
21+
"symfony/filesystem": "^3.2"
22+
},
23+
"extra": {
24+
"branch-alias": {
25+
"dev-master": "0.4.x-dev"
26+
}
2127
},
2228
"autoload": {
2329
"psr-4": {
@@ -29,16 +35,13 @@
2935
"Phpactor\\ClassFileConverter\\Tests\\": "tests/"
3036
}
3137
},
32-
"extra": {
33-
"branch-alias": {
34-
"dev-master": "0.4.x-dev"
35-
}
36-
},
38+
"minimum-stability": "dev",
39+
"prefer-stable": true,
3740
"scripts": {
3841
"integrate": [
3942
"vendor/bin/php-cs-fixer fix --dry-run",
4043
"vendor/bin/phpstan analyse lib -c phpstan.neon",
4144
"vendor/bin/phpunit"
4245
]
4346
}
44-
}
47+
}

0 commit comments

Comments
 (0)