Skip to content

Commit 74cccac

Browse files
author
DKravtsov
committedNov 16, 2023
Updated composer dependencies, recipes, PHPStorm configuration, Qodana, docs.
1 parent 5bea68d commit 74cccac

Some content is hidden

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

56 files changed

+2977
-1559
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

+9-4
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,26 @@
11
### User-specific stuff:
22
/.git*
3-
/.idea*
3+
/.idea/workspace.xml
44
.dockerignore
5-
.editorconfig
65

76
###> symfony/framework-bundle ###
87
/.env.local
98
/.env.*.local
109
/.env.local.php
1110
/public/bundles/
12-
/var/mysql-data
13-
/var/rabbitmq
1411
/vendor/
1512
###< symfony/framework-bundle ###
1613

14+
### Other data
15+
/var/mysql-data
16+
/var/rabbitmq
17+
/var/elasticsearch-data
18+
/var/redis
19+
1720
### Vendor bin dependencies
1821
/tools/*/vendor/
22+
.phpunit.cache
23+
.phpunit.result.cache
1924

2025
### Docker
2126
Dockerfile

0 commit comments

Comments
 (0)