Skip to content

Commit 2a86783

Browse files
author
DKravtsov
committedNov 17, 2023
Updated composer dependencies, recipes, PHPStorm configuration, Qodana, docs.
1 parent 2f65621 commit 2a86783

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+3237
-1586
lines changed
 

‎.circleci/config.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,24 @@ jobs:
4444
make phpcs
4545
4646
- run:
47-
name: Run PHP copy/paste detector
47+
name: Run PHPStan
4848
command: |
49-
make phpcpd
49+
make phpstan
5050
5151
- run:
52-
name: Run PHP mess detector
52+
name: Run PHPInsights
5353
command: |
54-
make phpmd
54+
make phpinsights
5555
5656
- run:
57-
name: Run PHPStan static analysis tool
57+
name: Run PHP Mess Detector
5858
command: |
59-
make phpstan
59+
make phpmd
6060
6161
- run:
62-
name: Run Phpinsights PHP quality checks
62+
name: Run PHP copy past detector
6363
command: |
64-
make phpinsights
64+
make phpcpd
6565
6666
- store_artifacts:
6767
path: reports

‎.dockerignore

+12-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,23 @@
1+
### User-specific stuff:
12
/.git*
2-
/.idea*
3+
/.idea/workspace.xml
34
.dockerignore
4-
.editorconfig
5+
6+
### Other data
57
storage/mysql-data
68
vendor/
7-
/tools/*/vendor/
89
bootstrap/cache
910
!bootstrap/cache/.gitignore
1011
.phpstorm.meta.php
11-
Dockerfile
1212
_ide_helper.php
13+
14+
### Vendor bin dependencies
15+
/tools/*/vendor/
16+
.phpunit.cache
17+
.phpunit.result.cache
18+
19+
### Docker
20+
Dockerfile
1321
docker-compose.yml
1422
docker-compose-test-ci.yml
1523
docker-compose-staging.yml

0 commit comments

Comments
 (0)