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: eXolnet/laravel-status
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v2.8.0
Choose a base ref
...
head repository: eXolnet/laravel-status
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v2.9.0
Choose a head ref
  • 17 commits
  • 5 files changed
  • 2 contributors

Commits on Aug 31, 2023

  1. docs: update contributors

    pgrenaud committed Aug 31, 2023
    Copy the full SHA
    4faecc6 View commit details

Commits on Oct 16, 2023

  1. Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    2f54f72 View commit details
  2. Merge pull request #20 from eXolnet/feature/remove-useless-composer-c…

    …ache
    
    ci: composer cache doesn't change anything
    xel1045 authored Oct 16, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    c3a4290 View commit details
  3. Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    f313b8c View commit details
  4. Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    95cf3ed View commit details

Commits on Jan 30, 2024

  1. docs: update LICENSE

    xel1045 committed Jan 30, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    6ada2ac View commit details

Commits on Mar 26, 2024

  1. build(deps): drop php 8.0 support

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    d6ef5b1 View commit details
  2. Merge pull request #21 from eXolnet/feature/drop-php8.0-support

    build(deps): drop php 8.0 support
    xel1045 authored Mar 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    8ce8c21 View commit details
  3. build(deps): drop Laravel 9 support

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    39e8a47 View commit details
  4. Merge pull request #22 from eXolnet/feature/drop-laravel9-support

    build(deps): drop Laravel 9 support
    xel1045 authored Mar 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    61ce7be View commit details
  5. build(deps): add Laravel 11 support

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    ee4aa3a View commit details
  6. ci: laravel 11 doesn't support php 8.1

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    4a71609 View commit details
  7. build(deps): update phpunit to v10

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    2880444 View commit details
  8. test: migrate phpunit.xml to v10 format

    xel1045 committed Mar 26, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    b2cffef View commit details
  9. Merge pull request #23 from eXolnet/feature/laravel11-support

    build(deps): add Laravel 11 support
    xel1045 authored Mar 26, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    9bd002d View commit details

Commits on Mar 28, 2024

  1. ci: test PHP 8.3 support

    xel1045 committed Mar 28, 2024

    Verified

    This commit was signed with the committer’s verified signature.
    xel1045 Alexandre D'Eschambeault
    Copy the full SHA
    22a6013 View commit details
  2. Merge pull request #24 from eXolnet/feature/php83-support

    ci: test PHP 8.3 support
    xel1045 authored Mar 28, 2024

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5e449f9 View commit details
Showing with 26 additions and 40 deletions.
  1. +8 −14 .github/workflows/tests.yml
  2. +1 −1 LICENSE
  3. +1 −1 README.md
  4. +6 −6 composer.json
  5. +10 −18 phpunit.xml.dist
22 changes: 8 additions & 14 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -9,29 +9,23 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.0, 8.1, 8.2]
laravel: [9.*, 10.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*, 11.*]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- php: 8.0
laravel: 10.*
- php: 8.1
laravel: 11.*
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }}

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Cache dependencies
uses: actions/cache@v2
with:
path: ~/.composer/cache/files
key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}
uses: actions/checkout@v4

- name: Setup PHP
uses: shivammathur/setup-php@v2
@@ -43,7 +37,7 @@ jobs:
- name: Install dependencies
run: |
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction --no-suggest
composer update --${{ matrix.dependency-version }} --prefer-dist --no-interaction
- name: Execute tests
run: composer test
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018-2023 eXolnet
Copyright (c) 2018-2024 eXolnet

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -51,7 +51,7 @@ If you discover any security related issues, please email security@exolnet.com i

- [Alexandre D'Eschambeault](https://github.com/xel1045)
- [Martin Blanchette](https://github.com/martinblanchette)
- [Pat Gagnon-Renaud](https://github.com/pgrenaud)
- [Patricia Gagnon-Renaud](https://github.com/pgrenaud)
- [All Contributors](../../contributors)

## License
12 changes: 6 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
@@ -24,15 +24,15 @@
"source": "https://github.com/eXolnet/laravel-status"
},
"require": {
"php": "^8.0",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/routing": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0"
"php": "^8.1",
"illuminate/filesystem": "^10.0|^11.0",
"illuminate/routing": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"mockery/mockery": "^1.4",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.3.3",
"orchestra/testbench": "^8.0|^9.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
28 changes: 10 additions & 18 deletions phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,27 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit bootstrap="vendor/autoload.php"
backupGlobals="false"
backupStaticAttributes="false"
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="vendor/autoload.php"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">

>
<testsuites>
<testsuite name="Feature">
<directory suffix="Test.php">./tests/Feature</directory>
<testsuite name="Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>

<filter>
<whitelist>
<source>
<include>
<directory suffix=".php">src/</directory>
</whitelist>
</filter>

</include>
</source>
<php>
<env name="APP_ENV" value="testing"/>
<env name="BCRYPT_ROUNDS" value="4"/>