|
1 | 1 | {
|
2 |
| - "name": "codezero/flash", |
3 |
| - "description": "Clean flash message system for Laravel.", |
4 |
| - "keywords": [ |
5 |
| - "flash", |
6 |
| - "message", |
7 |
| - "session", |
8 |
| - "form", |
9 |
| - "laravel" |
10 |
| - ], |
11 |
| - "license": "MIT", |
12 |
| - "authors": [ |
13 |
| - { |
14 |
| - "name": "Ivan Vermeyen", |
15 |
| - |
16 |
| - } |
17 |
| - ], |
18 |
| - "require": { |
19 |
| - "php": ">=5.4.0" |
20 |
| - }, |
21 |
| - "require-dev": { |
22 |
| - "phpspec/phpspec": "~2.0", |
23 |
| - "henrikbjorn/phpspec-code-coverage": "~1.0", |
24 |
| - "illuminate/session": "~5.0", |
25 |
| - "illuminate/support": "~5.0" |
26 |
| - }, |
27 |
| - "autoload": { |
28 |
| - "psr-4": { |
29 |
| - "CodeZero\\Flash\\": "src/" |
| 2 | + "name": "codezero/flash", |
| 3 | + "description": "Clean flash message system for Laravel.", |
| 4 | + "keywords": [ |
| 5 | + "flash", |
| 6 | + "message", |
| 7 | + "session", |
| 8 | + "form", |
| 9 | + "laravel" |
| 10 | + ], |
| 11 | + "license": "MIT", |
| 12 | + "authors": [ |
| 13 | + { |
| 14 | + "name": "Ivan Vermeyen", |
| 15 | + |
| 16 | + } |
| 17 | + ], |
| 18 | + "require": { |
| 19 | + "php": ">=7.2", |
| 20 | + "illuminate/session": ">=6.0", |
| 21 | + "illuminate/support": ">=6.0" |
30 | 22 | },
|
31 |
| - "files": [ |
32 |
| - "src//helpers.php" |
33 |
| - ] |
34 |
| - }, |
35 |
| - "extra": { |
36 |
| - "laravel": { |
37 |
| - "providers": [ |
38 |
| - "CodeZero\\Flash\\FlashServiceProvider" |
39 |
| - ], |
40 |
| - "aliases": { |
41 |
| - "Flash": "CodeZero\\Flash\\Facade\\Flash" |
42 |
| - } |
43 |
| - } |
44 |
| - }, |
45 |
| - "minimum-stability": "stable" |
| 23 | + "require-dev": { |
| 24 | + "orchestra/testbench": ">=4.0", |
| 25 | + "phpunit/phpunit": "^9.0" |
| 26 | + }, |
| 27 | + "autoload": { |
| 28 | + "psr-4": { |
| 29 | + "CodeZero\\Flash\\": "src/" |
| 30 | + }, |
| 31 | + "files": [ |
| 32 | + "src/helpers.php" |
| 33 | + ] |
| 34 | + }, |
| 35 | + "autoload-dev": { |
| 36 | + "psr-4": { |
| 37 | + "CodeZero\\Flash\\Tests\\": "tests" |
| 38 | + } |
| 39 | + }, |
| 40 | + "extra": { |
| 41 | + "laravel": { |
| 42 | + "providers": [ |
| 43 | + "CodeZero\\Flash\\FlashServiceProvider" |
| 44 | + ], |
| 45 | + "aliases": { |
| 46 | + "Flash": "CodeZero\\Flash\\Facades\\Flash" |
| 47 | + } |
| 48 | + } |
| 49 | + }, |
| 50 | + "config": { |
| 51 | + "preferred-install": "dist", |
| 52 | + "sort-packages": true, |
| 53 | + "optimize-autoloader": true |
| 54 | + }, |
| 55 | + "minimum-stability": "stable", |
| 56 | + "prefer-stable": true |
46 | 57 | }
|
0 commit comments