diff --git a/CHANGELOG.md b/CHANGELOG.md index 399d134..f1d67fe 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Packages ## Unreleased +### Added +- Added simple helper `php.sh` script to start a php8.2 environment with composer + ### Packages - Updated php cs fixer - Allow illuminate/collections v10 diff --git a/composer.json b/composer.json index a36d11f..da0568a 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ "friends-of-phpspec/phpspec-code-coverage": "^6.0.0", "phpunit/php-code-coverage": "^9.2.5|^10.0.2", "jkniest/linting": ">=1.10.0", - "friendsofphp/php-cs-fixer": "3.37.1", + "friendsofphp/php-cs-fixer": "3.38.2", "nikic/php-parser": "^4.13.2", "webmozart/assert": "^1.11.0" }, diff --git a/php.sh b/php.sh new file mode 100755 index 0000000..c9f2cea --- /dev/null +++ b/php.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +docker run --rm -it -v $(pwd):/app -w /app jkniest/docker-testing-php:4 bash