-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
225 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
github: [veewee] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
--- | ||
name: 🐞 Bug Report | ||
about: Something is broken? 🔨 | ||
--- | ||
|
||
### Bug Report | ||
|
||
<!-- Fill in the relevant information below to help triage your issue. --> | ||
|
||
| Q | A | ||
|------------ | ------ | ||
| BC Break | yes/no | ||
| Version | x.y.z | ||
|
||
#### Summary | ||
|
||
<!-- Provide a summary describing the problem you are experiencing. --> | ||
|
||
#### Current behaviour | ||
|
||
<!-- What is the current (buggy) behaviour? --> | ||
|
||
#### How to reproduce | ||
|
||
<!-- | ||
Provide steps to reproduce the bug. | ||
If possible, also add a code snippet with relevant configuration, driver/platform information, SQL queries, etc. | ||
Adding a failing Unit or Functional Test would help us a lot - you can submit one in a Pull Request separately, referencing this bug report. | ||
--> | ||
|
||
#### Expected behaviour | ||
|
||
<!-- What was the expected (correct) behaviour? --> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: 🎉 Feature Request | ||
about: You have a neat idea that should be implemented? 🎩 | ||
--- | ||
|
||
### Feature Request | ||
|
||
<!-- Fill in the relevant information below to help triage your issue. --> | ||
|
||
| Q | A | ||
|------------ | ------ | ||
| New Feature | yes | ||
| RFC | yes/no | ||
| BC Break | yes/no | ||
|
||
#### Summary | ||
|
||
<!-- Provide a summary of the feature you would like to see implemented. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
--- | ||
name: ❓ Support Question | ||
about: Have a problem that you can't figure out? 🤔 | ||
--- | ||
|
||
<!-- Fill in the relevant information below to help triage your issue. --> | ||
|
||
| Q | A | ||
|------------ | ----- | ||
| Version | x.y.z | ||
|
||
|
||
### Support Question | ||
|
||
<!-- Describe the issue you are facing here. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<!-- Fill in the relevant information below to help triage your pull request. --> | ||
|
||
| Q | A | ||
|------------- | ----------- | ||
| Type | bug/feature/improvement | ||
| BC Break | yes/no | ||
| Fixed issues | <!-- use #NUM format to reference an issue --> | ||
|
||
#### Summary | ||
|
||
<!-- Provide a summary of your change. --> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: composer | ||
directory: "/" | ||
schedule: | ||
interval: daily | ||
time: "04:00" | ||
open-pull-requests-limit: 10 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: Analyzers | ||
|
||
on: | ||
pull_request: ~ | ||
push: ~ | ||
schedule: | ||
- cron: '0 9 * * 5' | ||
|
||
jobs: | ||
run: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest] | ||
php-versions: ['8.1', '8.2', '8.3'] | ||
fail-fast: false | ||
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
tools: 'composer:v2' | ||
extensions: pcov, mbstring, posix, xdebug, dom, libxml, xml, xsl, xmlreader, xmlwriter | ||
- name: Install dependencies | ||
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} | ||
- name: Run the tests | ||
run: composer run psalm |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: CodeStyle | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
PHP_CS_FIXER_IGNORE_ENV: 1 | ||
|
||
jobs: | ||
run: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest] | ||
php-versions: ['8.1', '8.2', '8.3'] | ||
fail-fast: false | ||
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
tools: 'composer:v2' | ||
extensions: pcov, mbstring, posix | ||
- name: Install dependencies | ||
run: composer --ignore-platform-req=php update --prefer-dist --no-progress --no-suggest ${{ matrix.composer-options }} | ||
- name: Run the tests | ||
run: composer run cs |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Tests | ||
|
||
on: | ||
pull_request: ~ | ||
push: ~ | ||
schedule: | ||
- cron: '0 9 * * 5' | ||
|
||
jobs: | ||
run: | ||
runs-on: ${{ matrix.operating-system }} | ||
strategy: | ||
matrix: | ||
operating-system: [ubuntu-latest] | ||
php-versions: ['8.1', '8.2', '8.3'] | ||
experimental: [false] | ||
fail-fast: false | ||
name: PHP ${{ matrix.php-versions }} @ ${{ matrix.operating-system }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@master | ||
- name: Install PHP | ||
uses: shivammathur/setup-php@master | ||
with: | ||
php-version: ${{ matrix.php-versions }} | ||
tools: 'composer:v2' | ||
ini-values: error_reporting=E_ALL | ||
extensions: pcov, mbstring, posix, dom, libxml, xml, xsl, xmlreader, xmlwriter | ||
- name: Install dependencies | ||
run: composer update --ignore-platform-req=php --prefer-dist --no-progress --no-suggest | ||
- name: Run the tests | ||
run: composer run tests | ||
- name: Check tests quality | ||
run: composer run testquality |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"source": { | ||
"directories": [ | ||
"src" | ||
] | ||
}, | ||
"minMsi": 100, | ||
"minCoveredMsi": 100, | ||
"logs": { | ||
"text": ".phpunit.cache/infection.log", | ||
"html": ".phpunit.cache/infection" | ||
}, | ||
"mutators": { | ||
"@default": true, | ||
"CastInt": { | ||
"ignore": [ | ||
"VeeWee\\Reflecta\\*Exception::__construct" | ||
] | ||
} | ||
} | ||
} |