Skip to content

Commit 29319c4

Browse files
committed
Chore: Update changelog, composer files, and add cache configuration option
1 parent 025ad8b commit 29319c4

File tree

6 files changed

+91
-69
lines changed

6 files changed

+91
-69
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/)
55
and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## v4.1.0 (2025-05-15)
8+
### Added
9+
- Add cache driver configuration option
10+
### Updated
11+
- Update package dependencies
12+
713
## v4.0.0 (2024-12-31)
814
### Updated
915
- Update package dependencies

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
},
2222
"require": {
2323
"php": "^8.4.0",
24-
"laravel/framework": "^v12.12",
24+
"laravel/framework": "v12.14.1",
2525
"devanoxltd/tailwind-class-merge-php": "^v3.0"
2626
},
2727
"require-dev": {
28-
"laravel/pint": "^v1.22",
29-
"orchestra/testbench": "v10.2.2",
28+
"laravel/pint": "v1.22.1",
29+
"orchestra/testbench": "v10.3.0",
3030
"pestphp/pest": "v3.8.2",
3131
"pestphp/pest-plugin-arch": "^v3.1.1",
32-
"phpstan/phpstan": "^2.1.14",
32+
"phpstan/phpstan": "^2.1.15",
3333
"symfony/var-dumper": "v7.2.6"
3434
},
3535
"autoload": {

composer.lock

Lines changed: 61 additions & 61 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/tailwind-class-merge.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
33
declare(strict_types=1);
44

55
return [
6+
/*
7+
|--------------------------------------------------------------------------
8+
| Cache
9+
|--------------------------------------------------------------------------
10+
|
11+
| Here you may specify the cache driver that should be used to cache
12+
| the merged classes. You can set it to false to disable caching
13+
| entirely. You can also use any other cache driver supported by Laravel.
14+
| To use default cache driver, set it to null.
15+
|
16+
*/
17+
'cache' => env('TAILWIND_MERGE_CACHE', null),
618

719
/*
820
|--------------------------------------------------------------------------

0 commit comments

Comments
 (0)