This repository was archived by the owner on Feb 16, 2022. It is now read-only.
File tree 4 files changed +14
-9
lines changed
4 files changed +14
-9
lines changed Original file line number Diff line number Diff line change @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
5
5
This project adheres to [ Semantic Versioning] ( CONTRIBUTING.md ) .
6
6
7
7
8
+ ## [ v4.0.2] - 2020-04-04
9
+ - Enforce consistent artisan command tag namespacing
10
+ - Enforce consistent package namespace
11
+ - Drop laravel/helpers usage as it's no longer used
12
+
8
13
## [ v4.0.1] - 2020-03-20
9
14
- Convert into bigInteger database fields
10
15
- Add shortcut -f (force) for artisan publish commands
@@ -127,6 +132,7 @@ This project adheres to [Semantic Versioning](CONTRIBUTING.md).
127
132
## v0.0.1 - 2017-04-08
128
133
- Rename package to "rinvex/attributable" from "rinvex/sparse" based on 715a831
129
134
135
+ [ v4.0.2 ] : https://github.com/rinvex/laravel-attributes/compare/v4.0.1...v4.0.2
130
136
[ v4.0.1 ] : https://github.com/rinvex/laravel-attributes/compare/v4.0.0...v4.0.1
131
137
[ v4.0.0 ] : https://github.com/rinvex/laravel-attributes/compare/v3.0.3...v4.0.0
132
138
[ v3.0.3 ] : https://github.com/rinvex/laravel-attributes/compare/v3.0.2...v3.0.3
Original file line number Diff line number Diff line change 53
53
"illuminate/database" : " ^7.0.0" ,
54
54
"illuminate/support" : " ^7.0.0" ,
55
55
"jeremeamia/superclosure" : " ^2.4.0" ,
56
- "laravel/helpers" : " ^1.2.0" ,
57
56
"rinvex/laravel-cacheable" : " ^4.0.0" ,
58
57
"rinvex/laravel-support" : " ^4.0.0" ,
59
58
"spatie/eloquent-sortable" : " ^3.7.0" ,
63
62
"require-dev" : {
64
63
"codedungeon/phpunit-result-printer" : " ^0.27.0" ,
65
64
"illuminate/container" : " ^7.0.0" ,
66
- "orchestra/testbench" : " ^3.6 " ,
65
+ "orchestra/testbench" : " ^5.0.0 " ,
67
66
"phpunit/phpunit" : " ^9.0.0"
68
67
},
69
68
"autoload" : {
Original file line number Diff line number Diff line change @@ -33,14 +33,14 @@ public function handle(): void
33
33
34
34
switch ($ this ->option ('resource ' )) {
35
35
case 'config ' :
36
- $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex- attributes- config ' , '--force ' => $ this ->option ('force ' )]);
36
+ $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex/ attributes:: config ' , '--force ' => $ this ->option ('force ' )]);
37
37
break ;
38
38
case 'migrations ' :
39
- $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex- attributes- migrations ' , '--force ' => $ this ->option ('force ' )]);
39
+ $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex/ attributes:: migrations ' , '--force ' => $ this ->option ('force ' )]);
40
40
break ;
41
41
default :
42
- $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex- attributes- config ' , '--force ' => $ this ->option ('force ' )]);
43
- $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex- attributes- migrations ' , '--force ' => $ this ->option ('force ' )]);
42
+ $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex/ attributes:: config ' , '--force ' => $ this ->option ('force ' )]);
43
+ $ this ->call ('vendor:publish ' , ['--tag ' => 'rinvex/ attributes:: migrations ' , '--force ' => $ this ->option ('force ' )]);
44
44
break ;
45
45
}
46
46
Original file line number Diff line number Diff line change @@ -57,8 +57,8 @@ public function register()
57
57
public function boot ()
58
58
{
59
59
// Publish Resources
60
- $ this ->publishesConfig ('rinvex/laravel- attributes ' );
61
- $ this ->publishesMigrations ('rinvex/laravel- attributes ' );
62
- ! $ this ->autoloadMigrations ('rinvex. attributes ' ) || $ this ->loadMigrationsFrom (__DIR__ .'/../../database/migrations ' );
60
+ $ this ->publishesConfig ('rinvex/attributes ' );
61
+ $ this ->publishesMigrations ('rinvex/attributes ' );
62
+ ! $ this ->autoloadMigrations ('rinvex/ attributes ' ) || $ this ->loadMigrationsFrom (__DIR__ .'/../../database/migrations ' );
63
63
}
64
64
}
You can’t perform that action at this time.
0 commit comments