Skip to content

Commit 7373599

Browse files
authored
Merge branch 'main' into feature/ProgressOutputNodeProcessor
2 parents 12be0e8 + 28dba4f commit 7373599

File tree

3 files changed

+17
-0
lines changed

3 files changed

+17
-0
lines changed

.gitattributes

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/.github export-ignore
2+
/features export-ignore
3+
/tests export-ignore
4+
/.gitattributes export-ignore
5+
/.gitignore export-ignore
6+
/phpunit.xml export-ignore
7+
/README.md export-ignore

.github/workflows/ci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,17 @@ on: [ push, pull_request ]
55
jobs:
66
test:
77
runs-on: ubuntu-latest
8+
continue-on-error: ${{ matrix.env.experimental == true }}
89
strategy:
10+
fail-fast: false
911
matrix:
1012
env:
1113
- { php: 7.4, phpunit: 9 }
1214
- { php: 8.0, phpunit: 10 }
1315
- { php: 8.1, phpunit: 10 }
1416
- { php: 8.2, phpunit: 10 }
17+
- { php: 8.3, phpunit: 10, experimental: true }
18+
1519
steps:
1620
- uses: actions/checkout@v3
1721
- name: Composer cache

composer.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
{
22
"name": "netlogix/xml-processor",
33
"description": "PHP XML-Processor based on XMLReader",
4+
"homepage": "https://github.com/netlogix/XML-Processor",
5+
"support":{
6+
"source": "https://github.com/netlogix/XML-Processor/",
7+
"docs": "https://github.com/netlogix/XML-Processor/blob/main/README.md",
8+
"issues": "https://github.com/netlogix/XML-Processor/issues"
9+
},
410
"license": "MIT",
511
"require": {
612
"php": "^7.4 || ^8.0",

0 commit comments

Comments
 (0)