Skip to content

Commit

Permalink
Merge branch 'release/4.0.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephan Huber committed Nov 5, 2024
2 parents 024f02f + 82c4630 commit 5ad4037
Show file tree
Hide file tree
Showing 136 changed files with 1,716 additions and 1,282 deletions.
34 changes: 0 additions & 34 deletions .github/workflows/tests-8.0.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .github/workflows/tests-8.1.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/tests-8.2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Run phpunit tests on 7.3
name: Run phpunit tests on 8.3

on: [push]

Expand All @@ -9,14 +9,14 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
fetch-depth: 1

- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '7.3'
php-version: '8.3'
extensions: intl, zip, zlib
coverage: none
ini-values: memory_limit=1G, phar.readonly=0
Expand All @@ -29,6 +29,3 @@ jobs:

- name: Run unit tests
run: ./vendor/bin/phpunit tests --exclude-group docker



4 changes: 3 additions & 1 deletion .phpcs.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,5 +52,7 @@
directory.
-->
<rule ref="PSR2"/>

<rule ref="Generic.Files.LineLength">
<severity>0</severity>
</rule>
</ruleset>
44 changes: 26 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,44 +3,45 @@
"description": "A deployment helper cli",
"type": "project",
"require": {
"php": "^7.3 || ^8.0",
"symfony/console": "^2.8|^3|^4.1",
"php": "^8.2",
"symfony/console": "^5",
"psr/log": "^1.0",
"symfony/event-dispatcher": "^2.8|^3|^4.1",
"symfony/http-kernel": "^2.8|^3|^4.1",
"symfony/dependency-injection": "^2.8|^3|^4.1",
"symfony/config": "^2.8|^3|^4.1",
"symfony/yaml": "^2.8|^3|^4.1",
"symfony/event-dispatcher": "^5",
"symfony/http-kernel": "^5",
"symfony/dependency-injection": "^5",
"symfony/config": "^5",
"symfony/yaml": "^5",
"composer/semver": "^1.4||^3.2",
"symfony/process": "^2.8|^3|^4.1",
"symfony/process": "^5",
"symfony/flex": "^1.1",
"symfony/dotenv": "^2.8|^3|^4.1",
"symfony/dotenv": "^5",
"ext-json": "*",
"stecman/symfony-console-completion": "^0.11.0",
"symfony/finder": "^4.1",
"symfony/finder": "^5",
"thibaud-dauce/mattermost-php": "^1.2",
"twig/twig": "^3.0",
"ext-openssl": "*",
"jakeasmith/http_build_url": "^1.0",
"lesstif/php-jira-rest-client": "^1.35",
"graze/parallel-process": "^0.8.1",
"graze/parallel-process": "dev-master",
"ext-posix": "*",
"twig/string-extra": "^3.3",
"twig/string-extra": "^3.7",
"defuse/php-encryption": "^2.3",
"consolidation/self-update": "^2.0",
"consolidation/self-update": "^3.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"roave/security-advisories": "dev-latest" ,
"symfony/phpunit-bridge": "^2.8|^3|^4.1",
"symfony/phpunit-bridge": "^5",
"phpunit/phpunit": "^9.3",
"php-parallel-lint/php-parallel-lint": "^1.2",
"squizlabs/php_codesniffer": "^3.5",
"phpro/grumphp-shim": "^1",
"dealerdirect/phpcodesniffer-composer-installer": "^1",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-symfony": "^1.0",
"phpspec/prophecy-phpunit": "^2.0"
"phpspec/prophecy-phpunit": "^2.0",
"phpro/grumphp-shim": "^2",
"jangregor/phpstan-prophecy": "^1.0"
},
"autoload": {
"psr-4": {
Expand All @@ -58,6 +59,12 @@
"bin": [
"bin/phab"
],
"repositories": {
"graze/parallel-process": {
"type": "vcs",
"url": "https://github.com/ARY112/parallel-process.git"
}
},
"scripts": {
"auto-scripts": {

Expand All @@ -67,7 +74,7 @@
},
"config": {
"platform": {
"php": "7.3.31"
"php": "8.2"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
Expand All @@ -93,7 +100,8 @@
}
},
"symfony": {
"allow-contrib": "false"
"allow-contrib": "false",
"require": "5.4.*"
}
}
}
Loading

0 comments on commit 5ad4037

Please sign in to comment.