|
1 | 1 | { |
2 | | - "name": "cleaniquecoders/laravel-media-secure", |
3 | | - "description": "Securely display Media", |
4 | | - "keywords": [ |
5 | | - "cleaniquecoders", |
6 | | - "laravel", |
7 | | - "laravel-media-secure" |
8 | | - ], |
9 | | - "homepage": "https://github.com/cleaniquecoders/laravel-media-secure", |
10 | | - "license": "MIT", |
11 | | - "authors": [ |
12 | | - { |
13 | | - "name": "Nasrul Hazim Bin Mohamad", |
14 | | - "email": "nasrulhazim.m@gmail.com", |
15 | | - "role": "Developer" |
16 | | - } |
17 | | - ], |
18 | | - "require": { |
19 | | - "php": "^8.1", |
20 | | - "illuminate/contracts": "^9.0|^10.0", |
21 | | - "spatie/enum": "^3.13", |
22 | | - "spatie/laravel-enum": "^3.0", |
23 | | - "spatie/laravel-medialibrary": "^10.5", |
24 | | - "spatie/laravel-package-tools": "^1.14.0" |
| 2 | + "name": "cleaniquecoders/laravel-media-secure", |
| 3 | + "description": "Securely display Media", |
| 4 | + "keywords": [ |
| 5 | + "cleaniquecoders", |
| 6 | + "laravel", |
| 7 | + "laravel-media-secure" |
| 8 | + ], |
| 9 | + "homepage": "https://github.com/cleaniquecoders/laravel-media-secure", |
| 10 | + "license": "MIT", |
| 11 | + "authors": [ |
| 12 | + { |
| 13 | + "name": "Nasrul Hazim Bin Mohamad", |
| 14 | + "email": "nasrulhazim.m@gmail.com", |
| 15 | + "role": "Developer" |
| 16 | + } |
| 17 | + ], |
| 18 | + "require": { |
| 19 | + "php": "^8.1 | ^8.2 | ^8.3", |
| 20 | + "illuminate/contracts": "^9.0 | ^10.0 | ^11.0", |
| 21 | + "spatie/enum": "^3.13", |
| 22 | + "spatie/laravel-enum": "^3.0", |
| 23 | + "spatie/laravel-medialibrary": "^10.5", |
| 24 | + "spatie/laravel-package-tools": "^1.14.0" |
| 25 | + }, |
| 26 | + "require-dev": { |
| 27 | + "laravel/pint": "^1.0", |
| 28 | + "nunomaduro/collision": "^7.0", |
| 29 | + "nunomaduro/larastan": "^2.0.1", |
| 30 | + "orchestra/testbench": "^8.0 | ^9.0", |
| 31 | + "pestphp/pest": "^2.0", |
| 32 | + "pestphp/pest-plugin-laravel": "^2.0", |
| 33 | + "phpstan/extension-installer": "^1.1", |
| 34 | + "phpstan/phpstan-deprecation-rules": "^1.0", |
| 35 | + "phpstan/phpstan-phpunit": "^1.0", |
| 36 | + "phpunit/phpunit": "^9.5 | ^10.0" |
| 37 | + }, |
| 38 | + "autoload": { |
| 39 | + "psr-4": { |
| 40 | + "CleaniqueCoders\\LaravelMediaSecure\\": "src", |
| 41 | + "CleaniqueCoders\\LaravelMediaSecure\\Database\\Factories\\": "database/factories" |
25 | 42 | }, |
26 | | - "require-dev": { |
27 | | - "laravel/pint": "^1.0", |
28 | | - "nunomaduro/collision": "^7.0", |
29 | | - "nunomaduro/larastan": "^2.0.1", |
30 | | - "orchestra/testbench": "^8.0", |
31 | | - "pestphp/pest": "^2.0", |
32 | | - "pestphp/pest-plugin-laravel": "^2.0", |
33 | | - "phpstan/extension-installer": "^1.1", |
34 | | - "phpstan/phpstan-deprecation-rules": "^1.0", |
35 | | - "phpstan/phpstan-phpunit": "^1.0", |
36 | | - "phpunit/phpunit": "^9.5 | ^10.0" |
37 | | - }, |
38 | | - "autoload": { |
39 | | - "psr-4": { |
40 | | - "CleaniqueCoders\\LaravelMediaSecure\\": "src", |
41 | | - "CleaniqueCoders\\LaravelMediaSecure\\Database\\Factories\\": "database/factories" |
42 | | - }, |
43 | | - "files": [ |
44 | | - "support/helpers.php" |
45 | | - ] |
46 | | - }, |
47 | | - "autoload-dev": { |
48 | | - "psr-4": { |
49 | | - "CleaniqueCoders\\LaravelMediaSecure\\Tests\\": "tests" |
50 | | - } |
51 | | - }, |
52 | | - "scripts": { |
53 | | - "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
54 | | - "analyse": "vendor/bin/phpstan analyse", |
55 | | - "test": "vendor/bin/pest", |
56 | | - "test-coverage": "vendor/bin/pest --coverage", |
57 | | - "format": "vendor/bin/pint" |
58 | | - }, |
59 | | - "config": { |
60 | | - "sort-packages": true, |
61 | | - "allow-plugins": { |
62 | | - "pestphp/pest-plugin": true, |
63 | | - "phpstan/extension-installer": true |
64 | | - } |
65 | | - }, |
66 | | - "extra": { |
67 | | - "laravel": { |
68 | | - "providers": [ |
69 | | - "CleaniqueCoders\\LaravelMediaSecure\\LaravelMediaSecureServiceProvider" |
70 | | - ], |
71 | | - "aliases": { |
72 | | - "LaravelMediaSecure": "CleaniqueCoders\\LaravelMediaSecure\\Facades\\LaravelMediaSecure" |
73 | | - } |
74 | | - } |
75 | | - }, |
76 | | - "minimum-stability": "dev", |
77 | | - "prefer-stable": true |
| 43 | + "files": [ |
| 44 | + "support/helpers.php" |
| 45 | + ] |
| 46 | + }, |
| 47 | + "autoload-dev": { |
| 48 | + "psr-4": { |
| 49 | + "CleaniqueCoders\\LaravelMediaSecure\\Tests\\": "tests" |
| 50 | + } |
| 51 | + }, |
| 52 | + "scripts": { |
| 53 | + "post-autoload-dump": "@php ./vendor/bin/testbench package:discover --ansi", |
| 54 | + "analyse": "vendor/bin/phpstan analyse", |
| 55 | + "test": "vendor/bin/pest", |
| 56 | + "test-coverage": "vendor/bin/pest --coverage", |
| 57 | + "format": "vendor/bin/pint" |
| 58 | + }, |
| 59 | + "config": { |
| 60 | + "sort-packages": true, |
| 61 | + "allow-plugins": { |
| 62 | + "pestphp/pest-plugin": true, |
| 63 | + "phpstan/extension-installer": true |
| 64 | + } |
| 65 | + }, |
| 66 | + "extra": { |
| 67 | + "laravel": { |
| 68 | + "providers": [ |
| 69 | + "CleaniqueCoders\\LaravelMediaSecure\\LaravelMediaSecureServiceProvider" |
| 70 | + ], |
| 71 | + "aliases": { |
| 72 | + "LaravelMediaSecure": "CleaniqueCoders\\LaravelMediaSecure\\Facades\\LaravelMediaSecure" |
| 73 | + } |
| 74 | + } |
| 75 | + }, |
| 76 | + "minimum-stability": "dev", |
| 77 | + "prefer-stable": true |
78 | 78 | } |
0 commit comments