Skip to content

Commit 923ddcc

Browse files
authored
Merge pull request #29 from Sweetchuck/ci-refactor
Ci refactor
2 parents 31e919e + a62ad98 commit 923ddcc

File tree

15 files changed

+616
-685
lines changed

15 files changed

+616
-685
lines changed

Jenkinsfile

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
#!groovy
22

33
node {
4-
env.ROBO_PHPCS_ENVIRONMENT = 'jenkins'
5-
64
manager.buildSuccess()
75

86
try {

composer.json

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "sweetchuck/robo-phpcs",
33
"description": "Robo task wrapper for PHPCS",
44
"type": "library",
5-
"license": "GPL-2.0+",
5+
"license": "GPL-2.0-or-later",
66
"minimum-stability": "dev",
77
"prefer-stable": true,
88
"config": {
@@ -18,6 +18,7 @@
1818
},
1919
"require-dev": {
2020
"codeception/codeception": "^2.2",
21+
"cweagans/composer-patches": "^1.6",
2122
"mikey179/vfsStream": "^1.6",
2223
"sweetchuck/codeception-module-robo-task-runner": "^0.0",
2324
"sweetchuck/git-hooks": "^0.0",
@@ -35,10 +36,14 @@
3536
"Sweetchuck\\Robo\\Phpcs\\Test\\Helper\\": "tests/_support/Helper/",
3637
"Sweetchuck\\Robo\\Phpcs\\Tests\\Acceptance\\": "tests/acceptance/",
3738
"Sweetchuck\\Robo\\Phpcs\\Tests\\Unit\\": "tests/unit/"
38-
},
39-
"classmap": [
40-
"tests/_data/PhpcsRoboFile.php"
41-
]
39+
}
40+
},
41+
"extra": {
42+
"patches": {
43+
"codeception/codeception": {
44+
"https://github.com/Codeception/Codeception/issues/4663": "https://github.com/Codeception/Codeception/commit/4ca1316294e9a13030bc99695241a29571f4638c.patch"
45+
}
46+
}
4247
},
4348
"scripts": {
4449
"post-install-cmd": [

0 commit comments

Comments
 (0)