Skip to content

Commit

Permalink
Support Laravel 12
Browse files Browse the repository at this point in the history
  • Loading branch information
IonBazan committed Feb 5, 2025
1 parent 939ebd9 commit b3572b6
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,23 +18,24 @@ jobs:
- '8.2'
- '8.3'
- '8.4'
- '8.5'
include:
- php-versions: '7.0'
composer-flags: '--prefer-lowest'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-versions }}
- uses: ramsey/composer-install@v2
- uses: ramsey/composer-install@v3
with:
composer-options: ${{ matrix.composer-flags }}
- name: Run Tests
run: vendor/bin/simple-phpunit --coverage-clover coverage.xml
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v3
uses: codecov/codecov-action@v4
- name: Run mutation tests
if: ${{ matrix.php-versions == 7.4 }}
env:
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## v1.6.0 (2025-02-05)

- Support Laravel 12

## v1.5.0 (2024-04-14)

- Support Laravel 11
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Laravel Container Debug command

[![Laravel 5.4|6|7|8|9|10|11](https://img.shields.io/badge/Laravel-5.4+_|_6_|_7_|_8_|_9_|_10_|_11-informational.svg)](http://laravel.com)
[![Laravel 5.4 - 12.x](https://img.shields.io/badge/Laravel-5.4_--_12.x-informational.svg)](http://laravel.com)
[![Latest version](https://img.shields.io/packagist/v/ion-bazan/laravel-container-debug.svg)](https://packagist.org/packages/ion-bazan/laravel-container-debug)
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/IonBazan/laravel-container-debug/test.yml)](https://github.com/IonBazan/laravel-container-debug/actions)
[![PHP version](https://img.shields.io/packagist/php-v/ion-bazan/laravel-container-debug.svg)](https://packagist.org/packages/ion-bazan/laravel-container-debug)
Expand All @@ -9,7 +9,7 @@
[![Downloads](https://img.shields.io/packagist/dt/ion-bazan/laravel-container-debug.svg)](https://packagist.org/packages/ion-bazan/laravel-container-debug)
[![License](https://img.shields.io/packagist/l/ion-bazan/laravel-container-debug.svg)](https://packagist.org/packages/ion-bazan/laravel-container-debug)

Symfony-inspired package to list available services in Laravel IoC Container. Works with Laravel 5.4-11.x.
Symfony-inspired package to list available services in Laravel IoC Container. Works with Laravel 5.4-12.x.

# Example output

Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ion-bazan/laravel-container-debug",
"type": "library",
"description": "Lists available services in Laravel IoC Container. Works with Laravel 5.4-11.x",
"description": "Lists available services in Laravel IoC Container. Works with Laravel 5.4-12.x",
"keywords": [
"laravel",
"container",
Expand All @@ -19,8 +19,8 @@
"require": {
"php": ">=7.0",
"ext-json": "*",
"illuminate/console": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11",
"illuminate/container": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11"
"illuminate/console": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12",
"illuminate/container": "^5.4 || ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12"
},
"require-dev": {
"symfony/phpunit-bridge": "^4.4 || ^5 || ^6"
Expand Down

0 comments on commit b3572b6

Please sign in to comment.