Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.1.1 #11

Merged
merged 2 commits into from
Mar 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
### Security

## [1.1.1] - 2024-03-17

### Changed

- Changed PHP_CodeSniffer's download URL in `install-php-tools.sh` to the new URL described in the [new official repository](https://github.com/PHPCSStandards/PHP_CodeSniffer). See this [announcement](https://github.com/squizlabs/PHP_CodeSniffer/issues/3932) for more information. This allows installing the latest versions again.

## [1.1.0] - 2024-02-08

### Added
Expand Down Expand Up @@ -57,6 +63,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Additional tools and configuration for each container: Linux command line tools, Composer, PHP_CS, Xdebug, GitHub CLI
- Experimental Ubuntu container for shell exercises.

[Unreleased]: https://github.com/Digital-Media/fhooe-web-dock/compare/1.1.0...HEAD
[Unreleased]: https://github.com/Digital-Media/fhooe-web-dock/compare/1.1.1...HEAD
[1.1.1]: https://github.com/Digital-Media/fhooe-web-dock/compare/1.1.0...1.1.1
[1.1.0]: https://github.com/Digital-Media/fhooe-web-dock/compare/1.0.0...1.1.0
[1.0.0]: https://github.com/Digital-Media/fhooe-web-dock/releases/tag/1.0.0
4 changes: 2 additions & 2 deletions src/install-php-tools.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ chown root:root /usr/local/bin/composer

echo "## Installing PHP_CodeSniffer ##"
cd /tmp
curl -s -Ol https://squizlabs.github.io/PHP_CodeSniffer/phpcs.phar
curl -s -Ol https://squizlabs.github.io/PHP_CodeSniffer/phpcbf.phar
curl -s -OL https://phars.phpcodesniffer.com/phpcs.phar
curl -s -OL https://phars.phpcodesniffer.com/phpcbf.phar

mv phpcs.phar /usr/local/bin/phpcs
mv phpcbf.phar /usr/local/bin/phpcbf
Expand Down