Skip to content

Commit 771770e

Browse files
authored
Merge pull request #1304 from mfn/mfn-release
Prepare 2.12 release
2 parents ac1e271 + 8835353 commit 771770e

File tree

2 files changed

+24
-21
lines changed

2 files changed

+24
-21
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.11.0...master)
5+
[Next release](https://github.com/barryvdh/laravel-ide-helper/compare/v2.12.0...master)
66
--------------
7+
8+
2022-01-23, 2.12.0
9+
------------------
710
### Added
811
- Add support for custom casts that using `Castable` [#1287 / binotaliu](https://github.com/barryvdh/laravel-ide-helper/pull/1287)
912
- Added Laravel 9 support [#1297 / rcerljenko](https://github.com/barryvdh/laravel-ide-helper/pull/1297)

composer.json

+20-20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"name": "barryvdh/laravel-ide-helper",
33
"description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
4+
"license": "MIT",
45
"keywords": [
56
"laravel",
67
"autocomplete",
@@ -12,7 +13,6 @@
1213
"codeintel",
1314
"phpdoc"
1415
],
15-
"license": "MIT",
1616
"authors": [
1717
{
1818
"name": "Barry vd. Heuvel",
@@ -25,51 +25,51 @@
2525
"barryvdh/reflection-docblock": "^2.0.6",
2626
"composer/composer": "^1.10.23 || ^2.1.9",
2727
"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",
3131
"nikic/php-parser": "^4.7",
3232
"phpdocumentor/type-resolver": "^1.1.0"
3333
},
3434
"require-dev": {
3535
"ext-pdo_sqlite": "*",
3636
"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",
3939
"mockery/mockery": "^1.4",
40-
"orchestra/testbench": "^6|^7",
40+
"orchestra/testbench": "^6 || ^7",
4141
"phpunit/phpunit": "^8.5 || ^9",
4242
"spatie/phpunit-snapshot-assertions": "^3 || ^4",
4343
"vimeo/psalm": "^3.12"
4444
},
4545
"suggest": {
4646
"illuminate/events": "Required for automatic helper generation (^6|^7|^8|^9)."
4747
},
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+
},
4860
"config": {
4961
"sort-packages": true
5062
},
5163
"extra": {
5264
"branch-alias": {
53-
"dev-master": "2.9-dev"
65+
"dev-master": "2.12-dev"
5466
},
5567
"laravel": {
5668
"providers": [
5769
"Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
5870
]
5971
}
6072
},
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,
7373
"scripts": {
7474
"analyze": "psalm",
7575
"check-style": [

0 commit comments

Comments
 (0)