Skip to content

Commit

Permalink
Test with PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
back-2-95 committed Jan 16, 2024
1 parent 60c9e8b commit 36ae181
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: ['8.0', '8.1', '8.2']
php-versions: ['8.0', '8.1', '8.2', '8.3']

steps:

Expand Down
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@ PHONY += --install
cp tests/composer.json $(DIR)/composer.json
composer --working-dir=$(DIR) install -v
composer --working-dir=$(DIR) require drupal/admin_toolbar -v
composer --working-dir=$(DIR) require drupal/paragraphs:1.16 -v

PHONY += --update
--update:
composer --working-dir=$(DIR) require drupal/paragraphs -v

PHONY += test
test: --install assert
test: --install assert --update

PHONY += assert
assert: VENDOR := $(DIR)/vendor
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@

Require Plugin in the project and accept plugin:

```shell
```console
composer require druidfi/composer-slimmer
```

Clean projects vendor and other folders loaded by Composer.

Then test installing with Composer Slimmer plugin (`-v` flag is for verbose output):

```shell
```console
composer install -v
```

Expand Down

0 comments on commit 36ae181

Please sign in to comment.