Skip to content

Commit 7f09f30

Browse files
authored
Merge pull request #2 from wp-oop/task/fix
2 parents 13e13bb + bac85ab commit 7f09f30

File tree

15 files changed

+381
-266
lines changed

15 files changed

+381
-266
lines changed

.gitattributes

Lines changed: 14 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
test export-ignore
2-
nbproject export-ignore
1+
tests export-ignore
2+
docker export-ignore
3+
docker-compose.yml export-ignore
4+
.github export-ignore
35
.idea export-ignore
4-
.phan export-ignore
5-
.codeclimate.yml export-ignore
6-
.php_cs export-ignore
7-
.travis.yml export-ignore
6+
.env.example
87
.gitattributes export-ignore
98
.gitignore export-ignore
9+
composer.json export-ignore
1010
composer.lock export-ignore
11-
phpunit.xml export-ignore
11+
phpcs.xml.dist export-ignore
12+
phpunit.xml.dist export-ignore
13+
pslm.xml.dist export-ignore
14+
CHANGELOG.md export-ignore
15+
LICENSE export-ignore
16+
README.md export-ignore
17+
18+
* text eol=lf

.github/workflows/continuous-integration.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,14 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
php-versions: ['7.1', '7.2', '7.3', '7.4', '8.0']
8+
php-versions: [
9+
'7.1',
10+
'7.2',
11+
'7.3',
12+
'7.4',
13+
'8.0',
14+
'8.1',
15+
]
916

1017
steps:
1118
- uses: actions/checkout@v2

.idea/inspectionProfiles/Project_Default.xml

Lines changed: 57 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/phpunit.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/runConfigurations/phpunit_xml.xml

Lines changed: 11 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Dockerfile_php

Lines changed: 0 additions & 21 deletions
This file was deleted.

composer.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,10 +46,5 @@
4646
"WpOop\\Containers\\FuncTest\\": "tests/functional",
4747
"WpOop\\Containers\\TestHelpers\\": "tests/helpers"
4848
}
49-
},
50-
"extra": {
51-
"branch-alias": {
52-
"dev-develop": "0.1.x-dev"
53-
}
5449
}
5550
}

0 commit comments

Comments
 (0)