Skip to content

Commit 00c8473

Browse files
committed
v1.0.4 chore: update changelog and add support for Laravel 13
1 parent 894a75c commit 00c8473

3 files changed

Lines changed: 46 additions & 41 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/vendor/
22
/.idea/
33
/.vscode/
4+
.DS_Store
45
composer.lock
56
.phpunit.cache
67
.phpunit.result.cache

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to **darvis/livewire-honeypot** are documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [1.0.4] - 2026-03-21
9+
### Changed
10+
- Added support for Laravel 13
11+
812
## [1.0.3] - 2025-11-05
913
### Changed
1014
- Updated framework version constraints to support Laravel 12 and Livewire 4

composer.json

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
11
{
2-
"name": "darvis/livewire-honeypot",
3-
"description": "Lightweight honeypot + time-trap protection for Livewire 3 forms",
4-
"type": "library",
5-
"license": "MIT",
6-
"autoload": {
7-
"psr-4": {
8-
"Darvis\\LivewireHoneypot\\": "src/"
9-
}
10-
},
11-
"autoload-dev": {
12-
"psr-4": {
13-
"Darvis\\LivewireHoneypot\\Tests\\": "tests/"
14-
}
15-
},
16-
"extra": {
17-
"laravel": {
18-
"providers": [
19-
"Darvis\\LivewireHoneypot\\HoneypotServiceProvider"
20-
]
21-
}
22-
},
23-
"require": {
24-
"php": "^8.2",
25-
"laravel/framework": "^11.0|^12.0",
26-
"livewire/livewire": "^3.0|^4.0"
27-
},
28-
"require-dev": {
29-
"orchestra/testbench": "^9.0",
30-
"pestphp/pest": "^3.0",
31-
"pestphp/pest-plugin-laravel": "^3.0",
32-
"pestphp/pest-plugin-livewire": "^3.0"
33-
},
34-
"scripts": {
35-
"test": "vendor/bin/pest"
36-
},
37-
"minimum-stability": "stable",
38-
"prefer-stable": true,
39-
"config": {
40-
"allow-plugins": {
41-
"pestphp/pest-plugin": true
42-
}
2+
"name": "darvis/livewire-honeypot",
3+
"description": "Lightweight honeypot + time-trap protection for Livewire 3 forms",
4+
"type": "library",
5+
"license": "MIT",
6+
"autoload": {
7+
"psr-4": {
8+
"Darvis\\LivewireHoneypot\\": "src/"
439
}
10+
},
11+
"autoload-dev": {
12+
"psr-4": {
13+
"Darvis\\LivewireHoneypot\\Tests\\": "tests/"
14+
}
15+
},
16+
"extra": {
17+
"laravel": {
18+
"providers": [
19+
"Darvis\\LivewireHoneypot\\HoneypotServiceProvider"
20+
]
21+
}
22+
},
23+
"require": {
24+
"php": "^8.2",
25+
"laravel/framework": "^11.0|^12.0|^13.0",
26+
"livewire/livewire": "^3.0|^4.0"
27+
},
28+
"require-dev": {
29+
"orchestra/testbench": "^9.0",
30+
"pestphp/pest": "^3.0",
31+
"pestphp/pest-plugin-laravel": "^3.0",
32+
"pestphp/pest-plugin-livewire": "^3.0"
33+
},
34+
"scripts": {
35+
"test": "vendor/bin/pest"
36+
},
37+
"minimum-stability": "stable",
38+
"prefer-stable": true,
39+
"config": {
40+
"allow-plugins": {
41+
"pestphp/pest-plugin": true
42+
}
43+
}
4444
}

0 commit comments

Comments
 (0)