Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ jobs:

strategy:
matrix:
php: [7.4, 7.3, 7.2]
php: [8.4, 8.3, 8.2, 8.1, 8.0, 7.4, 7.3, 7.2]
os: [ubuntu-latest]

name: P${{ matrix.php }}

steps:
- name: Checkout code
uses: actions/checkout@v1
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v1
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Composer Dist Plugin

bump

A [Composer](https://getcomposer.org) plugin that allows zip files containing distributable assets to be downloaded and extracted within a package's directory when it's installed.

Useful for packages that need to ship compiled css/js files but don't want to track them within git.
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "Downloads distributable assets to be used in packages so you don't have to commit them.",
"license": "MIT",
"require": {
"composer-plugin-api": "^1.1 || ^2.0"
"composer-plugin-api": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^8.4",
Expand Down