From 8aa2522b0a98ca4b7f17604eb96e9e2cac7d8ed8 Mon Sep 17 00:00:00 2001 From: taylorotwell Date: Tue, 24 Sep 2024 15:53:40 +0000 Subject: [PATCH 1/3] Update CHANGELOG --- CHANGELOG.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index af054f4..64e2a8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,13 @@ # Release Notes -## [Unreleased](https://github.com/laravel/tinker/compare/v2.9.0...2.x) +## [Unreleased](https://github.com/laravel/tinker/compare/v2.10.0...2.x) + +## [v2.10.0](https://github.com/laravel/tinker/compare/v2.9.0...v2.10.0) - 2024-09-23 + +* Use actions/checkout[@v4](https://github.com/v4) by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/172 +* Use new static analysis workflow by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/173 +* Replace dead link in Security Policy by [@Jubeki](https://github.com/Jubeki) in https://github.com/laravel/tinker/pull/180 +* [2.x] Supports PHP 8.4 by [@crynobone](https://github.com/crynobone) in https://github.com/laravel/tinker/pull/182 ## [v2.9.0](https://github.com/laravel/tinker/compare/v2.8.2...v2.9.0) - 2024-01-04 From 9f5dde017e33a3e4800a6cdc363ac23b60065be3 Mon Sep 17 00:00:00 2001 From: Rafael Milewski Date: Fri, 27 Sep 2024 22:57:57 +0800 Subject: [PATCH 2/3] Update logo to support dark/light theme (#183) * Update logo.svg * Update README.md --- README.md | 2 +- art/logo.svg | 22 +++++++++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 40284ac..1ed1a49 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

Logo Laravel Tinker

+

Logo Laravel Tinker

Build Status diff --git a/art/logo.svg b/art/logo.svg index 5e2fa9b..6825e83 100644 --- a/art/logo.svg +++ b/art/logo.svg @@ -1 +1,21 @@ - \ No newline at end of file + + + + + + + + + + + + + + + + + + + From 22177cc71807d38f2810c6204d8f7183d88a57d3 Mon Sep 17 00:00:00 2001 From: Mior Muhammad Zaki Date: Mon, 27 Jan 2025 22:24:01 +0800 Subject: [PATCH 3/3] [2.x] Supports Laravel 12 (#185) * Supports Laravel 12 Signed-off-by: Mior Muhammad Zaki * wip Signed-off-by: Mior Muhammad Zaki * Update phpunit.xml.dist --------- Signed-off-by: Mior Muhammad Zaki --- .github/workflows/tests.yml | 14 ++++++++++++-- composer.json | 10 +++++----- phpunit.xml.dist | 2 +- 3 files changed, 18 insertions(+), 8 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 979dbbc..94eb45f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: php: [7.2, 7.3, 7.4, '8.0', 8.1, 8.2, 8.3] - laravel: [6, 7, 8, 9, 10, 11] + laravel: [6, 7, 8, 9, 10, 11, 12] include: - php: 8.4 laravel: 11 @@ -30,28 +30,38 @@ jobs: laravel: 10 - php: 7.2 laravel: 11 + - php: 7.2 + laravel: 12 - php: 7.3 laravel: 9 - php: 7.3 laravel: 10 - php: 7.3 laravel: 11 + - php: 7.3 + laravel: 12 - php: 7.4 laravel: 9 - php: 7.4 laravel: 10 - php: 7.4 laravel: 11 + - php: 7.4 + laravel: 12 - php: '8.0' laravel: 10 - php: '8.0' laravel: 11 + - php: '8.0' + laravel: 12 - php: 8.1 laravel: 6 - php: 8.1 laravel: 7 - php: 8.1 laravel: 11 + - php: 8.1 + laravel: 12 - php: 8.2 laravel: 6 - php: 8.2 @@ -87,4 +97,4 @@ jobs: composer update --prefer-dist --no-interaction --no-progress --with="illuminate/contracts=^${{ matrix.laravel }}" - name: Execute tests - run: vendor/bin/phpunit --verbose + run: vendor/bin/phpunit diff --git a/composer.json b/composer.json index 827dd1d..4d7b5b9 100644 --- a/composer.json +++ b/composer.json @@ -11,19 +11,19 @@ ], "require": { "php": "^7.2.5|^8.0", - "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", - "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0", "psy/psysh": "^0.11.1|^0.12.0", "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0" }, "require-dev": { "mockery/mockery": "~1.3.3|^1.4.2", "phpstan/phpstan": "^1.10", - "phpunit/phpunit": "^8.5.8|^9.3.3" + "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0" }, "suggest": { - "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)." + "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)." }, "autoload": { "psr-4": { diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 367feb0..fa94d8c 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -12,7 +12,7 @@ > - ./tests/ + ./tests/