Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
* develop: (73 commits)
  Add documentation
  Add new rule to documentation
  Fix: CS
  Make class final
  New Rule : no broken ref directive (#1816)
  composer(deps-dev): bump phpstan/phpstan from 1.11.10 to 1.11.11 (#1814)
  composer(deps-dev): bump phpstan/phpstan-webmozart-assert (#1813)
  composer(deps-dev): bump rector/rector from 1.2.2 to 1.2.3 (#1812)
  composer(deps-dev): bump ergebnis/php-cs-fixer-config (#1811)
  Enhancement: Bump dependencies in `composer.json` (#1810)
  composer(deps-dev): bump phpstan/phpstan from 1.11.9 to 1.11.10 (#1809)
  composer(deps-dev): bump phpstan/phpstan-webmozart-assert (#1808)
  composer(deps-dev): bump phpstan/phpstan from 1.11.8 to 1.11.9 (#1807)
  composer(deps-dev): bump ergebnis/php-cs-fixer-config (#1806)
  github-actions(deps): bump docker/setup-buildx-action (#1805)
  composer(deps-dev): bump symfony/var-dumper from 7.1.2 to 7.1.3 (#1804)
  composer(deps): bump symfony/console from 7.1.2 to 7.1.3 (#1803)
  composer(deps): bump symfony/finder from 7.1.1 to 7.1.3 (#1802)
  composer(deps): bump symfony/string from 7.1.2 to 7.1.3 (#1801)
  composer(deps): bump symfony/dependency-injection from 7.1.2 to 7.1.3 (#1800)
  ...
  • Loading branch information
OskarStark committed Aug 22, 2024
2 parents b318f0e + 4e3994d commit b5b761e
Show file tree
Hide file tree
Showing 95 changed files with 803 additions and 567 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,10 @@ jobs:

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3.3.0
uses: docker/setup-buildx-action@v3.6.1

- name: Build and push images
uses: docker/build-push-action@v5
uses: docker/build-push-action@v6
with:
push: true
builder: ${{ steps.buildx.outputs.name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down Expand Up @@ -53,7 +53,7 @@ jobs:
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@2.30.4
uses: shivammathur/setup-php@2.31.1
with:
coverage: "none"
php-version: ${{ matrix.php-version }}
Expand Down Expand Up @@ -82,7 +82,7 @@ jobs:
uses: actions/checkout@v4

- name: Install PHP with extensions
uses: shivammathur/setup-php@2.30.4
uses: shivammathur/setup-php@2.31.1
with:
coverage: "none"
php-version: ${{ matrix.php-version }}
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
uses: actions/checkout@v4

- name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down Expand Up @@ -159,7 +159,7 @@ jobs:

-
name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down Expand Up @@ -193,7 +193,7 @@ jobs:

-
name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/documentation.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

-
name: "Install PHP with extensions"
uses: "shivammathur/setup-php@2.30.4"
uses: "shivammathur/setup-php@2.31.1"
with:
coverage: "none"
extensions: "${{ env.REQUIRED_PHP_EXTENSIONS }}"
Expand Down
32 changes: 16 additions & 16 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,31 +7,31 @@
"ext-ctype": "*",
"ext-iconv": "*",
"ext-mbstring": "*",
"composer/semver": "^3.4.0",
"composer/semver": "^3.4.2",
"ondram/ci-detector": "^4.2.0",
"symfony/config": "^7.0.7",
"symfony/console": "^7.0.7",
"symfony/dependency-injection": "^7.0.7",
"symfony/finder": "^7.0.7",
"symfony/options-resolver": "^7.0.7",
"symfony/config": "^7.1.1",
"symfony/console": "^7.1.3",
"symfony/dependency-injection": "^7.1.3",
"symfony/finder": "^7.1.3",
"symfony/options-resolver": "^7.1.1",
"symfony/service-contracts": "^3.5.0",
"symfony/string": "^7.0.7",
"symfony/yaml": "^7.0.7",
"symfony/string": "^7.1.3",
"symfony/yaml": "^7.1.1",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42.0",
"ergebnis/php-cs-fixer-config": "^6.29",
"ergebnis/composer-normalize": "^2.43.0",
"ergebnis/php-cs-fixer-config": "^6.34",
"ergebnis/test-util": "^1.6",
"icanhazstring/composer-unused": "^0.8.11",
"mikey179/vfsstream": "^1.6.11",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan": "^1.11.1",
"phpstan/extension-installer": "^1.4.1",
"phpstan/phpstan": "^1.11.10",
"phpstan/phpstan-phpunit": "^1.4.0",
"phpstan/phpstan-webmozart-assert": "^1.2.6",
"phpunit/phpunit": "^10.5.20",
"rector/rector": "^1.1.0",
"symfony/var-dumper": "^7.0.7"
"phpstan/phpstan-webmozart-assert": "^1.2.9",
"phpunit/phpunit": "^10.5.27",
"rector/rector": "^1.2.2",
"symfony/var-dumper": "^7.1.3"
},
"replace": {
"paragonie/random_compat": "^2.0",
Expand Down
Loading

0 comments on commit b5b761e

Please sign in to comment.