Skip to content

Commit

Permalink
Bumped version to accommodate Laravel 11
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonferens committed Mar 18, 2024
1 parent b676b09 commit badd680
Show file tree
Hide file tree
Showing 7 changed files with 108 additions and 10 deletions.
7 changes: 7 additions & 0 deletions .envrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# Automatically sets up your devbox environment whenever you cd into this
# directory via our direnv integration:

eval "$(devbox generate direnv --print-envrc)"

# check out https://www.jetpack.io/devbox/docs/ide_configuration/direnv/
# for more details
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,12 @@ Mail isn't faked here. You get to inspect the actual mail ensuring you are sendi

## Requirements

| Laravel Version | Mail Intercept Version |
|:-----------------|:------------------------|
| 10.x | 0.4.x |
| 9.x | 0.3.x |
| 8.x and lower | 0.2.x |
| Laravel Version | Mail Intercept Version |
|:----------------|:-----------------------|
| 11.x | 0.5.x |
| 10.x | 0.4.x |
| 9.x | 0.3.x |
| 8.x and lower | 0.2.x |

Please note: If you are using `v0.2.x`, please refer to that version's [documentation](https://github.com/kirschbaum-development/mail-intercept/tree/v0.2.x).

Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@
}
],
"require": {
"php": "^8.0.2|^8.1",
"illuminate/mail": "^9.2|^10.0"
"php": "^8.0.2|^8.1|^8.2",
"illuminate/mail": "^9.2|^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.7",
"orchestra/testbench": "^7.1|^8.0",
"phpunit/phpunit": "^9.5.10",
"spatie/ray": "^1.34"
"orchestra/testbench": "^7.1|^8.0|^9.0",
"phpunit/phpunit": "^9.5.10|^10.5",
"spatie/ray": "^1.41.1"
},
"autoload": {
"psr-4": {
Expand Down
17 changes: 17 additions & 0 deletions devbox.d/php/php-fpm.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[global]
pid = ${PHPFPM_PID_FILE}
error_log = ${PHPFPM_ERROR_LOG_FILE}
daemonize = yes

[www]
; user = www-data
; group = www-data
listen = 127.0.0.1:${PHPFPM_PORT}
; listen.owner = www-data
; listen.group = www-data
pm = dynamic
pm.max_children = 5
pm.start_servers = 2
pm.min_spare_servers = 1
pm.max_spare_servers = 3
chdir = /
6 changes: 6 additions & 0 deletions devbox.d/php/php.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[php]

; Put your php.ini directives here. For the latest default php.ini file, see https://github.com/php/php-src/blob/master/php.ini-production

; memory_limit = 128M
; expose_php = Off
13 changes: 13 additions & 0 deletions devbox.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"packages": ["php@8.2"],
"shell": {
"init_hook": [
"echo 'Welcome to devbox!' > /dev/null"
],
"scripts": {
"test": [
"echo \"Error: no test specified\" && exit 1"
]
}
}
}
54 changes: 54 additions & 0 deletions devbox.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"lockfile_version": "1",
"packages": {
"php@8.2": {
"last_modified": "2024-03-08T13:51:52Z",
"plugin_version": "0.0.3",
"resolved": "github:NixOS/nixpkgs/a343533bccc62400e8a9560423486a3b6c11a23b#php",
"source": "devbox-search",
"version": "8.2.16",
"systems": {
"aarch64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/zbs3abbzn3wk71cg0nxb1cslr0dqvqh1-php-with-extensions-8.2.16",
"default": true
}
],
"store_path": "/nix/store/zbs3abbzn3wk71cg0nxb1cslr0dqvqh1-php-with-extensions-8.2.16"
},
"aarch64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/m1zbpk3mkx2g8zg9jr2ihw15miahjap4-php-with-extensions-8.2.16",
"default": true
}
],
"store_path": "/nix/store/m1zbpk3mkx2g8zg9jr2ihw15miahjap4-php-with-extensions-8.2.16"
},
"x86_64-darwin": {
"outputs": [
{
"name": "out",
"path": "/nix/store/1c7sygadaq4bfacs9lx5php74hllrsnn-php-with-extensions-8.2.16",
"default": true
}
],
"store_path": "/nix/store/1c7sygadaq4bfacs9lx5php74hllrsnn-php-with-extensions-8.2.16"
},
"x86_64-linux": {
"outputs": [
{
"name": "out",
"path": "/nix/store/a96xa8idc7zsjdc5s8bbysc2ij16818j-php-with-extensions-8.2.16",
"default": true
}
],
"store_path": "/nix/store/a96xa8idc7zsjdc5s8bbysc2ij16818j-php-with-extensions-8.2.16"
}
}
}
}
}

0 comments on commit badd680

Please sign in to comment.