|
1 | 1 | { |
2 | | - "name": "jorijn/laravel-security-checker", |
3 | | - "description": "Added Laravel functionality to the Enlightn Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.", |
4 | | - "license": "MIT", |
5 | | - "keywords": [ |
6 | | - "laravel", |
7 | | - "security", |
8 | | - "composer", |
9 | | - "dependencies" |
10 | | - ], |
11 | | - "authors": [ |
12 | | - { |
13 | | - "name": "Jorijn Schrijvershof", |
14 | | - "email": "jorijn@jorijn.com" |
| 2 | + "name": "jorijn/laravel-security-checker", |
| 3 | + "description": "Added Laravel functionality to the Enlightn Security Checker. Adds a command to check for, and optionally emails you, vulnerabilities when they affect you.", |
| 4 | + "license": "MIT", |
| 5 | + "keywords": [ |
| 6 | + "laravel", |
| 7 | + "security", |
| 8 | + "composer", |
| 9 | + "dependencies" |
| 10 | + ], |
| 11 | + "authors": [ |
| 12 | + { |
| 13 | + "name": "Jorijn Schrijvershof", |
| 14 | + "email": "jorijn@jorijn.com" |
| 15 | + } |
| 16 | + ], |
| 17 | + "require": { |
| 18 | + "php": ">=7.2|^8.0", |
| 19 | + "guzzlehttp/guzzle": "^7.0", |
| 20 | + "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 21 | + "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 22 | + "illuminate/bus": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 23 | + "illuminate/mail": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 24 | + "illuminate/queue": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 25 | + "illuminate/notifications": "^6.0|^7.0|^8.0|^9.0|^10.0", |
| 26 | + "ext-json": "*", |
| 27 | + "enlightn/security-checker": "^1.3" |
| 28 | + }, |
| 29 | + "require-dev": { |
| 30 | + "laravel/slack-notification-channel": "^1.0|^2.0", |
| 31 | + "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0", |
| 32 | + "squizlabs/php_codesniffer": "~2.3|^3.6", |
| 33 | + "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0", |
| 34 | + "mockery/mockery": "^1.2" |
| 35 | + }, |
| 36 | + "suggest": { |
| 37 | + "laravel/slack-notification-channel": "If you need slack notifications, you must install this package." |
| 38 | + }, |
| 39 | + "autoload": { |
| 40 | + "psr-4": { |
| 41 | + "Jorijn\\LaravelSecurityChecker\\": "src/" |
| 42 | + } |
| 43 | + }, |
| 44 | + "autoload-dev": { |
| 45 | + "psr-4": { |
| 46 | + "Jorijn\\LaravelSecurityChecker\\Tests\\": "tests" |
| 47 | + } |
| 48 | + }, |
| 49 | + "scripts": { |
| 50 | + "test": "phpunit", |
| 51 | + "cs": "phpcs --standard=psr2 src/" |
| 52 | + }, |
| 53 | + "extra": { |
| 54 | + "laravel": { |
| 55 | + "providers": [ |
| 56 | + "Jorijn\\LaravelSecurityChecker\\ServiceProvider" |
| 57 | + ] |
| 58 | + } |
15 | 59 | } |
16 | | - ], |
17 | | - "require": { |
18 | | - "php": ">=7.2|^8.0", |
19 | | - "guzzlehttp/guzzle": "^7.0", |
20 | | - "illuminate/support": "^6.0|^7.0|^8.0|^9.0", |
21 | | - "illuminate/console": "^6.0|^7.0|^8.0|^9.0", |
22 | | - "illuminate/bus": "^6.0|^7.0|^8.0|^9.0", |
23 | | - "illuminate/mail": "^6.0|^7.0|^8.0|^9.0", |
24 | | - "illuminate/queue": "^6.0|^7.0|^8.0|^9.0", |
25 | | - "illuminate/notifications": "^6.0|^7.0|^8.0|^9.0", |
26 | | - "ext-json": "*", |
27 | | - "enlightn/security-checker": "^1.3" |
28 | | - }, |
29 | | - "require-dev": { |
30 | | - "laravel/slack-notification-channel": "^1.0|^2.0", |
31 | | - "phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0", |
32 | | - "squizlabs/php_codesniffer": "~2.3|^3.6", |
33 | | - "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0", |
34 | | - "mockery/mockery": "^1.2" |
35 | | - }, |
36 | | - "suggest": { |
37 | | - "laravel/slack-notification-channel": "If you need slack notifications, you must install this package." |
38 | | - }, |
39 | | - "autoload": { |
40 | | - "psr-4": { |
41 | | - "Jorijn\\LaravelSecurityChecker\\": "src/" |
42 | | - } |
43 | | - }, |
44 | | - "autoload-dev": { |
45 | | - "psr-4": { |
46 | | - "Jorijn\\LaravelSecurityChecker\\Tests\\": "tests" |
47 | | - } |
48 | | - }, |
49 | | - "scripts": { |
50 | | - "test": "phpunit", |
51 | | - "cs": "phpcs --standard=psr2 src/" |
52 | | - }, |
53 | | - "extra": { |
54 | | - "laravel": { |
55 | | - "providers": [ |
56 | | - "Jorijn\\LaravelSecurityChecker\\ServiceProvider" |
57 | | - ] |
58 | | - } |
59 | | - } |
60 | 60 | } |
0 commit comments