Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,16 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Composer
uses: php-actions/composer@v5
uses: php-actions/composer@v6
with:
php_version: 8.0
php_version: "8.2"

- name: PHPUnit
uses: php-actions/phpunit@v2
uses: php-actions/phpunit@v4
with:
php_version: 8.0
configuration: phpunit.xml
version: "11"
php_version: "8.2"
configuration: "phpunit.xml"
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# final-mile-tracking
A library to generate final mile tracking links
A library to generate final mile tracking links.

## PHP 8
The minimum PHP version is 8.0.
The minimum PHP version is 8.2.

## Installation
```composer install```
docker compose run --rm php composer ```install```

## Run tests
You can run the test via composer
```composer run test```
```docker compose run --rm php composer test```
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"type": "library",
"license": "Apache-2.0",
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5"
"mockery/mockery": "^1.6",
"phpunit/phpunit": "^11.0"
},
"require": {
"php": ">=8.0"
"php": ">=8.2"
},
"autoload": {
"psr-4": {
Expand Down
Loading