Skip to content

Commit 82d1b49

Browse files
authored
Metadata files (#26)
* Meta files * Adding debug coe * Minors * Cs * Require sf messenger * remove bc check
1 parent ff0080b commit 82d1b49

File tree

6 files changed

+17
-14
lines changed

6 files changed

+17
-14
lines changed

.github/workflows/.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[*.yml]
2+
indent_size = 2

.github/workflows/bc.yml

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

.github/workflows/static.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
on: [push]
1+
on: [push, pull_request]
22
name: Static analysis
3+
34
jobs:
45
phpstan:
56
name: PHPStan
67
runs-on: ubuntu-latest
78
steps:
8-
- uses: actions/checkout@master
9+
- name: Checkout code
10+
uses: actions/checkout@v2
11+
912
- name: PHPStan
1013
uses: docker://oskarstark/phpstan-ga
1114
with:
@@ -15,7 +18,7 @@ jobs:
1518
name: PHP-CS-Fixer
1619
runs-on: ubuntu-latest
1720
steps:
18-
- uses: actions/checkout@master
21+
- uses: actions/checkout@v2
1922
- name: PHP-CS-Fixer
2023
uses: docker://oskarstark/php-cs-fixer-ga
2124
with:

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/php_cs.cache
1+
/.php_cs.cache
22
/composer.lock
33
/phpunit.xml
44
/vendor/

phpstan-baseline.neon

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
parameters:

phpstan.neon.dist

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
includes:
2+
- phpstan-baseline.neon
3+
4+
parameters:
5+
level: 5
6+
paths:
7+
- src

0 commit comments

Comments
 (0)