Skip to content

Commit faaa7a6

Browse files
authored
Merge pull request #288 from funivan/PHPMNT-8-add-phpstan
PHPMNT-8 Add phpstan
2 parents 35fa63d + f0ba8da commit faaa7a6

8 files changed

Lines changed: 1551 additions & 7 deletions

File tree

.circleci/config.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,18 @@ orbs:
44
ci: bigcommerce/internal@volatile
55
php: bigcommerce/internal-php@volatile
66

7+
default_matrix: &default_matrix
8+
matrix:
9+
parameters:
10+
php-version: [ "8.0", "8.1", "8.2" ]
11+
712
workflows:
813
version: 2
914
full:
1015
jobs:
1116
- php/phpunit-tests:
17+
<<: *default_matrix
1218
configuration: "phpunit.xml.dist"
13-
matrix:
14-
parameters:
15-
php-version: [ "8.0", "8.1", "8.2" ]
19+
- php/static-analysis:
20+
<<: *default_matrix
21+
generate_ide_helper: false

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ script/*
1111
.idea
1212
/.php_cs
1313
/.php_cs.cache
14+
/.phpunit.result.cache

0 commit comments

Comments
 (0)