Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: druidfi/composer-slimmer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.2
Choose a base ref
...
head repository: druidfi/composer-slimmer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 1 commit
  • 3 files changed
  • 1 contributor

Commits on Jan 16, 2024

  1. Test with PHP 8.3

    back-2-95 committed Jan 16, 2024
    Copy the full SHA
    36ae181 View commit details
Showing with 8 additions and 4 deletions.
  1. +1 −1 .github/workflows/tests.yml
  2. +5 −1 Makefile
  3. +2 −2 README.md
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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:

6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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
```