|
1 | 1 | {
|
2 |
| - "name": "ralphjsmit/laravel-filament-components", |
3 |
| - "description": "A collection of reusable components for Filament.", |
4 |
| - "keywords": [ |
| 2 | + "name" : "ralphjsmit/laravel-filament-components", |
| 3 | + "description" : "A collection of reusable components for Filament.", |
| 4 | + "keywords" : [ |
5 | 5 | "ralphjsmit",
|
6 | 6 | "laravel",
|
7 | 7 | "laravel-filament-components"
|
8 | 8 | ],
|
9 |
| - "homepage": "https://github.com/ralphjsmit/laravel-filament-components", |
10 |
| - "license": "MIT", |
11 |
| - "authors": [ |
| 9 | + "homepage" : "https://github.com/ralphjsmit/laravel-filament-components", |
| 10 | + "license" : "MIT", |
| 11 | + "authors" : [ |
12 | 12 | {
|
13 |
| - "name": "Ralph J. Smit", |
14 |
| - |
15 |
| - "role": "Developer" |
| 13 | + "name" : "Ralph J. Smit", |
| 14 | + |
| 15 | + "role" : "Developer" |
16 | 16 | }
|
17 | 17 | ],
|
18 |
| - "require": { |
19 |
| - "php": "^8.0", |
20 |
| - "filament/filament": "^2.10", |
21 |
| - "filament/forms": "^2.10", |
22 |
| - "illuminate/contracts": "^8.73|^9.0", |
23 |
| - "spatie/laravel-package-tools": "^1.9.2" |
| 18 | + "require" : { |
| 19 | + "php" : "^8.0", |
| 20 | + "filament/filament" : "^2.12", |
| 21 | + "filament/forms" : "^2.10", |
| 22 | + "illuminate/contracts" : "^8.73|^9.0|^10.0", |
| 23 | + "spatie/laravel-package-tools" : "^1.9.2" |
24 | 24 | },
|
25 |
| - "require-dev": { |
26 |
| - "nunomaduro/collision": "^5.10|^6.0", |
27 |
| - "orchestra/testbench": "^6.22|^7.0", |
28 |
| - "pestphp/pest": "^1.21", |
29 |
| - "pestphp/pest-plugin-laravel": "^1.1", |
30 |
| - "phpunit/phpunit": "^9.5", |
31 |
| - "spatie/laravel-ray": "^1.26", |
32 |
| - "spatie/pest-plugin-test-time": "^1.0" |
| 25 | + "require-dev" : { |
| 26 | + "nunomaduro/collision" : "^5.10|^6.0|^7.0", |
| 27 | + "orchestra/testbench" : "^6.22|^7.0|^8.0", |
| 28 | + "pestphp/pest" : "^1.21", |
| 29 | + "pestphp/pest-plugin-laravel" : "^1.1", |
| 30 | + "phpunit/phpunit" : "^9.5|^10.0", |
| 31 | + "spatie/laravel-ray" : "^1.26", |
| 32 | + "spatie/pest-plugin-test-time" : "^1.0", |
| 33 | + "nesbot/carbon" : "^2.66" |
33 | 34 | },
|
34 |
| - "autoload": { |
35 |
| - "psr-4": { |
36 |
| - "RalphJSmit\\Filament\\Components\\": "src" |
| 35 | + "autoload" : { |
| 36 | + "psr-4" : { |
| 37 | + "RalphJSmit\\Filament\\Components\\" : "src" |
37 | 38 | },
|
38 |
| - "files": [ |
| 39 | + "files" : [ |
39 | 40 | "src/Support/helpers.php"
|
40 | 41 | ]
|
41 | 42 | },
|
42 |
| - "autoload-dev": { |
43 |
| - "psr-4": { |
44 |
| - "RalphJSmit\\Filament\\Components\\Tests\\": "tests" |
| 43 | + "autoload-dev" : { |
| 44 | + "psr-4" : { |
| 45 | + "RalphJSmit\\Filament\\Components\\Tests\\" : "tests" |
45 | 46 | }
|
46 | 47 | },
|
47 |
| - "scripts": { |
48 |
| - "test": "vendor/bin/pest", |
49 |
| - "test-coverage": "vendor/bin/pest --coverage" |
| 48 | + "scripts" : { |
| 49 | + "test" : "vendor/bin/pest", |
| 50 | + "test-coverage" : "vendor/bin/pest --coverage" |
50 | 51 | },
|
51 |
| - "config": { |
52 |
| - "sort-packages": true, |
53 |
| - "allow-plugins": { |
54 |
| - "pestphp/pest-plugin": true |
| 52 | + "config" : { |
| 53 | + "sort-packages" : true, |
| 54 | + "allow-plugins" : { |
| 55 | + "pestphp/pest-plugin" : true |
55 | 56 | }
|
56 | 57 | },
|
57 |
| - "extra": { |
58 |
| - "laravel": { |
59 |
| - "providers": [ |
| 58 | + "extra" : { |
| 59 | + "laravel" : { |
| 60 | + "providers" : [ |
60 | 61 | "RalphJSmit\\Filament\\Components\\FilamentComponentsServiceProvider"
|
61 | 62 | ],
|
62 |
| - "aliases": { |
63 |
| - "FilamentComponents": "RalphJSmit\\Filament\\Components\\Facades\\FilamentComponents" |
| 63 | + "aliases" : { |
| 64 | + "FilamentComponents" : "RalphJSmit\\Filament\\Components\\Facades\\FilamentComponents" |
64 | 65 | }
|
65 | 66 | }
|
66 | 67 | },
|
67 |
| - "minimum-stability": "dev", |
68 |
| - "prefer-stable": true |
| 68 | + "minimum-stability" : "dev", |
| 69 | + "prefer-stable" : true |
69 | 70 | }
|
0 commit comments