|
1 | 1 | { |
2 | 2 | "name": "barryvdh/laravel-ide-helper", |
3 | 3 | "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.", |
| 4 | + "license": "MIT", |
4 | 5 | "keywords": [ |
5 | 6 | "laravel", |
6 | 7 | "autocomplete", |
|
12 | 13 | "codeintel", |
13 | 14 | "phpdoc" |
14 | 15 | ], |
15 | | - "license": "MIT", |
16 | 16 | "authors": [ |
17 | 17 | { |
18 | 18 | "name": "Barry vd. Heuvel", |
|
25 | 25 | "barryvdh/reflection-docblock": "^2.0.6", |
26 | 26 | "composer/composer": "^1.10.23 || ^2.1.9", |
27 | 27 | "doctrine/dbal": "^2.6 || ^3", |
28 | | - "illuminate/console": "^8|^9", |
29 | | - "illuminate/filesystem": "^8|^9", |
30 | | - "illuminate/support": "^8|^9", |
| 28 | + "illuminate/console": "^8 || ^9", |
| 29 | + "illuminate/filesystem": "^8 || ^9", |
| 30 | + "illuminate/support": "^8 || ^9", |
31 | 31 | "nikic/php-parser": "^4.7", |
32 | 32 | "phpdocumentor/type-resolver": "^1.1.0" |
33 | 33 | }, |
34 | 34 | "require-dev": { |
35 | 35 | "ext-pdo_sqlite": "*", |
36 | 36 | "friendsofphp/php-cs-fixer": "^2", |
37 | | - "illuminate/config": "^8|^9", |
38 | | - "illuminate/view": "^8|^9", |
| 37 | + "illuminate/config": "^8 || ^9", |
| 38 | + "illuminate/view": "^8 || ^9", |
39 | 39 | "mockery/mockery": "^1.4", |
40 | | - "orchestra/testbench": "^6|^7", |
| 40 | + "orchestra/testbench": "^6 || ^7", |
41 | 41 | "phpunit/phpunit": "^8.5 || ^9", |
42 | 42 | "spatie/phpunit-snapshot-assertions": "^3 || ^4", |
43 | 43 | "vimeo/psalm": "^3.12" |
44 | 44 | }, |
45 | 45 | "suggest": { |
46 | 46 | "illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)." |
47 | 47 | }, |
| 48 | + "minimum-stability": "dev", |
| 49 | + "prefer-stable": true, |
| 50 | + "autoload": { |
| 51 | + "psr-4": { |
| 52 | + "Barryvdh\\LaravelIdeHelper\\": "src" |
| 53 | + } |
| 54 | + }, |
| 55 | + "autoload-dev": { |
| 56 | + "psr-4": { |
| 57 | + "Barryvdh\\LaravelIdeHelper\\Tests\\": "tests" |
| 58 | + } |
| 59 | + }, |
48 | 60 | "config": { |
49 | 61 | "sort-packages": true |
50 | 62 | }, |
51 | 63 | "extra": { |
52 | 64 | "branch-alias": { |
53 | | - "dev-master": "2.9-dev" |
| 65 | + "dev-master": "2.12-dev" |
54 | 66 | }, |
55 | 67 | "laravel": { |
56 | 68 | "providers": [ |
57 | 69 | "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider" |
58 | 70 | ] |
59 | 71 | } |
60 | 72 | }, |
61 | | - "autoload": { |
62 | | - "psr-4": { |
63 | | - "Barryvdh\\LaravelIdeHelper\\": "src" |
64 | | - } |
65 | | - }, |
66 | | - "autoload-dev": { |
67 | | - "psr-4": { |
68 | | - "Barryvdh\\LaravelIdeHelper\\Tests\\": "tests" |
69 | | - } |
70 | | - }, |
71 | | - "minimum-stability": "dev", |
72 | | - "prefer-stable": true, |
73 | 73 | "scripts": { |
74 | 74 | "analyze": "psalm", |
75 | 75 | "check-style": [ |
|
0 commit comments