Commit graph

1117 commits

Author SHA1 Message Date
Laravel Shift
265d1404fe composer update 2021-08-10 18:33:13 +00:00
Laravel Shift
6bb2533154 Bump community package dependencies 2021-08-10 18:32:57 +00:00
Laravel Shift
7a32255adc Bump Laravel version constraint 2021-08-10 18:32:57 +00:00
Adam Lavin
8df8f73b32
Prevent indexing tracks that shouldn't be indexed 2021-05-01 00:39:43 +01:00
Adam Lavin
2af5799564
Update validation.php 2021-04-17 14:23:49 +01:00
Adam Lavin
db63eefa69
Merge pull request #169 from Poniverse/shift-ci-85 2021-04-17 14:18:41 +01:00
Adam Lavin
d66cf862b7
Update docker readme 2021-04-17 14:14:22 +01:00
Adam Lavin
106dfc14b6
Fix search 2021-04-17 04:49:06 +01:00
Laravel Shift
3b3801dcba Shift Laravel dependencies 2021-03-31 17:12:48 +00:00
Laravel Shift
c947357a8d Shift config files 2021-03-31 17:12:48 +00:00
Laravel Shift
ce92442889 Shift core files 2021-03-31 17:12:47 +00:00
Adam Lavin
6b2ae80414
Initial docker sync setup and documentation of the new supported dev env methods 2021-03-31 01:04:17 +01:00
Adam Lavin
d1cb2e69cf
Fix docker build 2021-03-30 22:08:15 +01:00
Adam Lavin
eb02ff48c2
Fix playlist download url 2021-03-29 09:50:56 +01:00
Adam Lavin
293fd535c4
Fix model binding when using cached routes, install imagick in container 2021-03-29 02:40:59 +01:00
Adam Lavin
860edbf533
Forgot the damned overrides 2021-03-29 01:39:16 +01:00
Adam Lavin
6e78a0cf91
Update elasticsearch.php config file to latest version 2021-03-29 01:15:22 +01:00
Adam Lavin
6b15f35508
Trust all proxies 2021-03-29 01:10:05 +01:00
Adam Lavin
25a2293ccb
Include redis extension 2021-03-29 00:54:55 +01:00
Adam Lavin
738e947622
Optimize on container launch 2021-03-29 00:51:06 +01:00
Adam Lavin
83b290b761
Fix Dockerfile asset building 2021-03-29 00:39:41 +01:00
Adam Lavin
d449721d6c
Add github action 2021-03-28 19:02:50 +01:00
Adam Lavin
bc7408c76d
Actually add an alpine compatible version of AtomicParsley 2021-03-28 18:59:50 +01:00
Adam Lavin
92dc7e02d8
Add AtomicParsley to image 2021-03-28 18:59:50 +01:00
Adam Lavin
48b44a9e4f
Update php overrides in container 2021-03-28 18:59:50 +01:00
Adam Lavin
ff79a638d3
Add a way of specifying the ffmpeg prefix to use
It's useful for specifying a docker command
2021-03-28 17:51:21 +01:00
Adam Lavin
79690f2edb
Add missing files 2021-03-27 03:58:08 +00:00
Adam Lavin
16b9f33986
Yeet getide3 from our manually vendored dependencies 2021-03-27 03:52:40 +00:00
Adam Lavin
ff57ce54dd
Biggus Upgradus
- !! NEW DOCKER FILES :D !!
- getid3 is now vendored from composer! :D
- fix elasticsearch for use with newer versions
- fix some migration issues by yeeting a migration that has had its day
- fix our asset pipeline (webpack / gulp)
2021-03-27 03:51:45 +00:00
Adam Lavin
7de9c6c7e7
Fix routes 2021-02-14 19:59:07 +00:00
Adam Lavin
4ff293dd39
Merge pull request #152 from Poniverse/shift-40784 2021-02-14 19:52:46 +00:00
Laravel Shift
8411287d95 Shift cleanup 2021-02-14 19:46:41 +00:00
Laravel Shift
12239c16de Shift to class based routes 2021-02-14 19:46:05 +00:00
Laravel Shift
40ead10cd8 Convert deprecated $dates property to $casts 2021-02-14 19:46:05 +00:00
Laravel Shift
3b2d58b77f Remove unnecessary table name property
By convention, Laravel uses the "snake case", plural name of the class as the table name.
2021-02-14 19:46:04 +00:00
Laravel Shift
9374905d7b Shift options array to fluent route methods 2021-02-14 19:46:03 +00:00
Laravel Shift
a526f2c3f8 Shift to consistent, fluent response chains 2021-02-14 19:46:03 +00:00
Laravel Shift
dce4ad2a74 Leverage injected request object
Laravel automatically injects the current Http [request object][1] to all Controller actions and Middleware. Leveraging this object improves consistency and testability.

[1]: https://laravel.com/docs/requests#accessing-the-request
2021-02-14 19:46:02 +00:00
Laravel Shift
3c43124446 Streamline calls to orderBy 2021-02-14 19:45:58 +00:00
Laravel Shift
3f85a1ca06 Shift to helper methods
Laravel offers many helper functions, including: `view()`, `response()`, `redirect()`, `config()`, and more.

Review the [Helpers][1] documentation for more details.

[1]: https://laravel.com/docs/5.7/helpers
2021-02-14 19:45:52 +00:00
Laravel Shift
8225ff5b92 Streamline Blade directives
Laravel offers many built-in Blade directives, including: `@auth`, `@guest` ,`@csrf`, `@method`, `@json`, and more.

Review the [Blade][1] documentation for more details.

[1]: https://laravel.com/docs/5.7/blade
2021-02-14 19:45:51 +00:00
Laravel Shift
2a62eaa50a Global Facades 2021-02-14 19:45:51 +00:00
Laravel Shift
b8fa6cb1f7 Modernize PHP syntax
PHP 7 adopts a short array syntax as well as prefers single quoted
string were possible.
2021-02-14 19:45:36 +00:00
Adam Lavin
e030bf2591
Upgrade Checker (#151)
Upgrade Checker
2021-02-14 19:44:17 +00:00
Laravel Shift
f87b29d064 Shift to new helper methods
Laravel 5 added several new helper functions, including:

- `view()`
- `response()`
- `redirect()`
- `config()`
- `abort()`

Review the [helpers][1] documentation for more details.

[1]: https://laravel.com/docs/5.0/helpers
2021-02-14 19:38:28 +00:00
Adam Lavin
3d511c42e8
Merge pull request #150 from Poniverse/shift-40782
Co-authored-by: Laravel Shift <shift@laravelshift.com>
2021-02-14 19:35:55 +00:00
Adam Lavin
0af1dfa71d
Add missing migration 2021-02-14 19:35:26 +00:00
Adam Lavin
15e01fcc8d
Updates after 8.0 shift 2021-02-14 19:34:53 +00:00
Laravel Shift
4a37c63876 Shift cleanup 2021-02-14 19:11:44 +00:00
Laravel Shift
a7e6e56356 Shift Laravel dependencies 2021-02-14 19:11:18 +00:00