diff --git a/app/AlbumDownloader.php b/app/AlbumDownloader.php index c171ff77..e0729a7b 100644 --- a/app/AlbumDownloader.php +++ b/app/AlbumDownloader.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm; +namespace App; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Album; +use App\Models\Track; use ZipStream; class AlbumDownloader diff --git a/app/Commands/AddTrackToPlaylistCommand.php b/app/Commands/AddTrackToPlaylistCommand.php index c6587426..48f43587 100644 --- a/app/Commands/AddTrackToPlaylistCommand.php +++ b/app/Commands/AddTrackToPlaylistCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Playlist; +use App\Models\Track; use Auth; use DB; use Validator; diff --git a/app/Commands/CommandBase.php b/app/Commands/CommandBase.php index 15620695..471ef5bc 100644 --- a/app/Commands/CommandBase.php +++ b/app/Commands/CommandBase.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; abstract class CommandBase { diff --git a/app/Commands/CommandResponse.php b/app/Commands/CommandResponse.php index bb35af07..a18b71e0 100644 --- a/app/Commands/CommandResponse.php +++ b/app/Commands/CommandResponse.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Illuminate\Validation\Validator; diff --git a/app/Commands/CreateAlbumCommand.php b/app/Commands/CreateAlbumCommand.php index 4b1bbd17..ce278f38 100644 --- a/app/Commands/CreateAlbumCommand.php +++ b/app/Commands/CreateAlbumCommand.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Image; +use App\Models\Album; +use App\Models\Image; use Auth; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use Validator; class CreateAlbumCommand extends CommandBase diff --git a/app/Commands/CreateAnnouncementCommand.php b/app/Commands/CreateAnnouncementCommand.php index 86eb34c8..6868d866 100644 --- a/app/Commands/CreateAnnouncementCommand.php +++ b/app/Commands/CreateAnnouncementCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; -use Poniverse\Ponyfm\Models\Announcement; +use App\Models\Announcement; use Validator; class CreateAnnouncementCommand extends CommandBase diff --git a/app/Commands/CreateCommentCommand.php b/app/Commands/CreateCommentCommand.php index 671c30e2..90ad3218 100644 --- a/app/Commands/CreateCommentCommand.php +++ b/app/Commands/CreateCommentCommand.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Notification; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\Comment; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; use Auth; use Validator; diff --git a/app/Commands/CreateGenreCommand.php b/app/Commands/CreateGenreCommand.php index cf36ad0f..0b8e725e 100644 --- a/app/Commands/CreateGenreCommand.php +++ b/app/Commands/CreateGenreCommand.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Models\Genre; +use App\Models\Genre; use Validator; class CreateGenreCommand extends CommandBase diff --git a/app/Commands/CreatePlaylistCommand.php b/app/Commands/CreatePlaylistCommand.php index 53738598..c1a96fbc 100644 --- a/app/Commands/CreatePlaylistCommand.php +++ b/app/Commands/CreatePlaylistCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Notification; -use Poniverse\Ponyfm\Models\Playlist; +use App\Models\Playlist; use Auth; use Validator; diff --git a/app/Commands/CreateShowSongCommand.php b/app/Commands/CreateShowSongCommand.php index 71139259..3994107e 100644 --- a/app/Commands/CreateShowSongCommand.php +++ b/app/Commands/CreateShowSongCommand.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Models\ShowSong; +use App\Models\ShowSong; use Validator; class CreateShowSongCommand extends CommandBase diff --git a/app/Commands/CreateUserCommand.php b/app/Commands/CreateUserCommand.php index 79a2823d..91b359dd 100644 --- a/app/Commands/CreateUserCommand.php +++ b/app/Commands/CreateUserCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use Validator; class CreateUserCommand extends CommandBase diff --git a/app/Commands/DeleteAlbumCommand.php b/app/Commands/DeleteAlbumCommand.php index 03483940..eb9d6e31 100644 --- a/app/Commands/DeleteAlbumCommand.php +++ b/app/Commands/DeleteAlbumCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; -use Poniverse\Ponyfm\Models\Album; +use App\Models\Album; use Auth; class DeleteAlbumCommand extends CommandBase diff --git a/app/Commands/DeleteGenreCommand.php b/app/Commands/DeleteGenreCommand.php index 84f61c71..de9091e8 100644 --- a/app/Commands/DeleteGenreCommand.php +++ b/app/Commands/DeleteGenreCommand.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Jobs\DeleteGenre; +use App\Models\Genre; +use App\Jobs\DeleteGenre; use Validator; class DeleteGenreCommand extends CommandBase diff --git a/app/Commands/DeletePlaylistCommand.php b/app/Commands/DeletePlaylistCommand.php index 521aff82..92130289 100644 --- a/app/Commands/DeletePlaylistCommand.php +++ b/app/Commands/DeletePlaylistCommand.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\Playlist; +use App\Models\Playlist; use Auth; class DeletePlaylistCommand extends CommandBase diff --git a/app/Commands/DeleteShowSongCommand.php b/app/Commands/DeleteShowSongCommand.php index 24a142be..ea502e42 100644 --- a/app/Commands/DeleteShowSongCommand.php +++ b/app/Commands/DeleteShowSongCommand.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Models\ShowSong; -use Poniverse\Ponyfm\Jobs\DeleteShowSong; +use App\Models\ShowSong; +use App\Jobs\DeleteShowSong; use Validator; class DeleteShowSongCommand extends CommandBase diff --git a/app/Commands/DeleteTrackCommand.php b/app/Commands/DeleteTrackCommand.php index 5d86227a..08373304 100644 --- a/app/Commands/DeleteTrackCommand.php +++ b/app/Commands/DeleteTrackCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; class DeleteTrackCommand extends CommandBase { diff --git a/app/Commands/EditAlbumCommand.php b/app/Commands/EditAlbumCommand.php index 42e2c1be..d4b613a6 100644 --- a/app/Commands/EditAlbumCommand.php +++ b/app/Commands/EditAlbumCommand.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\Image; +use App\Models\User; use Auth; use Gate; use DB; diff --git a/app/Commands/EditPlaylistCommand.php b/app/Commands/EditPlaylistCommand.php index 08d6c02c..b60d2bba 100644 --- a/app/Commands/EditPlaylistCommand.php +++ b/app/Commands/EditPlaylistCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\PinnedPlaylist; -use Poniverse\Ponyfm\Models\Playlist; +use App\Models\PinnedPlaylist; +use App\Models\Playlist; use Auth; use Validator; diff --git a/app/Commands/EditTrackCommand.php b/app/Commands/EditTrackCommand.php index edaefdb1..0ba0e267 100644 --- a/app/Commands/EditTrackCommand.php +++ b/app/Commands/EditTrackCommand.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Notification; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackType; -use Poniverse\Ponyfm\Models\User; -use Poniverse\Ponyfm\Models\Playlist; +use App\Models\Album; +use App\Models\Image; +use App\Models\Track; +use App\Models\TrackType; +use App\Models\User; +use App\Models\Playlist; use DB; class EditTrackCommand extends CommandBase diff --git a/app/Commands/GenerateTrackFilesCommand.php b/app/Commands/GenerateTrackFilesCommand.php index 58eee391..980a62db 100644 --- a/app/Commands/GenerateTrackFilesCommand.php +++ b/app/Commands/GenerateTrackFilesCommand.php @@ -18,17 +18,17 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use AudioCache; use FFmpegMovie; use File; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Exceptions\InvalidEncodeOptionsException; -use Poniverse\Ponyfm\Jobs\EncodeTrackFile; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Exceptions\InvalidEncodeOptionsException; +use App\Jobs\EncodeTrackFile; +use App\Models\Track; +use App\Models\TrackFile; use SplFileInfo; /** @@ -36,7 +36,7 @@ use SplFileInfo; * been parsed and the track object is created, this generates the track's * corresponding TrackFile objects and ensures that all of them have been encoded. * - * @package Poniverse\Ponyfm\Commands + * @package App\Commands */ class GenerateTrackFilesCommand extends CommandBase { diff --git a/app/Commands/MergeAccountsCommand.php b/app/Commands/MergeAccountsCommand.php index a3bc8a24..61e22188 100644 --- a/app/Commands/MergeAccountsCommand.php +++ b/app/Commands/MergeAccountsCommand.php @@ -18,23 +18,23 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Carbon\Carbon; use DB; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\EmailSubscription; -use Poniverse\Ponyfm\Models\Favourite; -use Poniverse\Ponyfm\Models\Follower; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Notification; -use Poniverse\Ponyfm\Models\PinnedPlaylist; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\ResourceUser; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\Comment; +use App\Models\EmailSubscription; +use App\Models\Favourite; +use App\Models\Follower; +use App\Models\Image; +use App\Models\Notification; +use App\Models\PinnedPlaylist; +use App\Models\Playlist; +use App\Models\ResourceLogItem; +use App\Models\ResourceUser; +use App\Models\Track; +use App\Models\User; class MergeAccountsCommand extends CommandBase { diff --git a/app/Commands/ParseTrackTagsCommand.php b/app/Commands/ParseTrackTagsCommand.php index 704690d0..9f5d4311 100755 --- a/app/Commands/ParseTrackTagsCommand.php +++ b/app/Commands/ParseTrackTagsCommand.php @@ -18,20 +18,20 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Carbon\Carbon; use Config; use getID3; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Album; +use App\Models\Genre; +use App\Models\Image; +use App\Models\Track; use AudioCache; use File; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Models\TrackType; -use Poniverse\Ponyfm\Models\User; +use App\Models\TrackType; +use App\Models\User; use Symfony\Component\HttpFoundation\File\UploadedFile; use Symfony\Component\HttpKernel\Exception\BadRequestHttpException; diff --git a/app/Commands/RemoveTrackFromPlaylistCommand.php b/app/Commands/RemoveTrackFromPlaylistCommand.php index 6b6934c7..13a1ee04 100644 --- a/app/Commands/RemoveTrackFromPlaylistCommand.php +++ b/app/Commands/RemoveTrackFromPlaylistCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Playlist; +use App\Models\Track; use Auth; use DB; diff --git a/app/Commands/RenameGenreCommand.php b/app/Commands/RenameGenreCommand.php index 28c9935d..37d879c9 100644 --- a/app/Commands/RenameGenreCommand.php +++ b/app/Commands/RenameGenreCommand.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Jobs\UpdateTagsForRenamedGenre; -use Poniverse\Ponyfm\Models\Genre; +use App\Jobs\UpdateTagsForRenamedGenre; +use App\Models\Genre; use Validator; class RenameGenreCommand extends CommandBase diff --git a/app/Commands/RenameShowSongCommand.php b/app/Commands/RenameShowSongCommand.php index b83f1285..98b922a2 100644 --- a/app/Commands/RenameShowSongCommand.php +++ b/app/Commands/RenameShowSongCommand.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Gate; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Support\Str; -use Poniverse\Ponyfm\Jobs\UpdateTagsForRenamedShowSong; -use Poniverse\Ponyfm\Models\ShowSong; +use App\Jobs\UpdateTagsForRenamedShowSong; +use App\Models\ShowSong; use Validator; class RenameShowSongCommand extends CommandBase diff --git a/app/Commands/SaveAccountSettingsCommand.php b/app/Commands/SaveAccountSettingsCommand.php index 8e0cc7e9..c06b63a8 100644 --- a/app/Commands/SaveAccountSettingsCommand.php +++ b/app/Commands/SaveAccountSettingsCommand.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use DB; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\User; +use App\Models\Image; +use App\Models\User; use Gate; use Validator; diff --git a/app/Commands/ToggleFavouriteCommand.php b/app/Commands/ToggleFavouriteCommand.php index d772d03a..0234683a 100644 --- a/app/Commands/ToggleFavouriteCommand.php +++ b/app/Commands/ToggleFavouriteCommand.php @@ -18,15 +18,15 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Notification; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Models\Favourite; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\ResourceUser; +use App\Contracts\Favouritable; +use App\Models\Favourite; +use App\Models\Track; +use App\Models\Album; +use App\Models\Playlist; +use App\Models\ResourceUser; use Auth; use DB; diff --git a/app/Commands/ToggleFollowingCommand.php b/app/Commands/ToggleFollowingCommand.php index aa2a0bd8..f879c4ab 100644 --- a/app/Commands/ToggleFollowingCommand.php +++ b/app/Commands/ToggleFollowingCommand.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; -use Poniverse\Ponyfm\Models\Follower; -use Poniverse\Ponyfm\Models\ResourceUser; +use App\Models\Follower; +use App\Models\ResourceUser; use Auth; use Notification; diff --git a/app/Commands/UploadTrackCommand.php b/app/Commands/UploadTrackCommand.php index aa2f794f..19438c30 100644 --- a/app/Commands/UploadTrackCommand.php +++ b/app/Commands/UploadTrackCommand.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Commands; +namespace App\Commands; use Auth; use Carbon\Carbon; @@ -26,8 +26,8 @@ use Config; use Gate; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Track; +use App\Models\User; use Validator; class UploadTrackCommand extends CommandBase diff --git a/app/Console/Commands/BootstrapLocalEnvironment.php b/app/Console/Commands/BootstrapLocalEnvironment.php index 9ee588ce..a4a90f37 100644 --- a/app/Console/Commands/BootstrapLocalEnvironment.php +++ b/app/Console/Commands/BootstrapLocalEnvironment.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; diff --git a/app/Console/Commands/ClassifyMLPMA.php b/app/Console/Commands/ClassifyMLPMA.php index 92670c2c..08d1cc64 100644 --- a/app/Console/Commands/ClassifyMLPMA.php +++ b/app/Console/Commands/ClassifyMLPMA.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; -use Poniverse\Ponyfm\Models\ShowSong; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackType; +use App\Models\ShowSong; +use App\Models\Track; +use App\Models\TrackType; use DB; use Illuminate\Console\Command; use Illuminate\Support\Str; diff --git a/app/Console/Commands/ClearTrackCache.php b/app/Console/Commands/ClearTrackCache.php index d68d8685..9669594e 100644 --- a/app/Console/Commands/ClearTrackCache.php +++ b/app/Console/Commands/ClearTrackCache.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Carbon\Carbon; use File; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Models\TrackFile; class ClearTrackCache extends Command { diff --git a/app/Console/Commands/FixMLPMAImages.php b/app/Console/Commands/FixMLPMAImages.php index 23814efa..7cc99c01 100644 --- a/app/Console/Commands/FixMLPMAImages.php +++ b/app/Console/Commands/FixMLPMAImages.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Config; use DB; use File; use getID3; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\Image; +use App\Models\Image; use Symfony\Component\HttpFoundation\File\UploadedFile; class FixMLPMAImages extends Command diff --git a/app/Console/Commands/ImportEQBeats.php b/app/Console/Commands/ImportEQBeats.php index a9935ae5..f1b7fc86 100644 --- a/app/Console/Commands/ImportEQBeats.php +++ b/app/Console/Commands/ImportEQBeats.php @@ -1,6 +1,6 @@ . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Carbon\Carbon; use DB; use Illuminate\Console\Command; use Illuminate\Support\Collection; -use Poniverse\Ponyfm\Commands\MergeAccountsCommand; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Favourite; -use Poniverse\Ponyfm\Models\Follower; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\PinnedPlaylist; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\ResourceUser; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Commands\MergeAccountsCommand; +use App\Models\Album; +use App\Models\Comment; +use App\Models\Favourite; +use App\Models\Follower; +use App\Models\Image; +use App\Models\PinnedPlaylist; +use App\Models\Playlist; +use App\Models\ResourceLogItem; +use App\Models\ResourceUser; +use App\Models\Track; +use App\Models\User; class MergeAccounts extends Command { diff --git a/app/Console/Commands/MigrateOldData.php b/app/Console/Commands/MigrateOldData.php index bb87f7cd..aaab3a25 100644 --- a/app/Console/Commands/MigrateOldData.php +++ b/app/Console/Commands/MigrateOldData.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\ResourceLogItem; +use App\Models\Image; +use App\Models\ResourceLogItem; use DB; use Exception; use Illuminate\Console\Command; diff --git a/app/Console/Commands/PoniverseApiSetup.php b/app/Console/Commands/PoniverseApiSetup.php index ddc18302..af0f8b38 100644 --- a/app/Console/Commands/PoniverseApiSetup.php +++ b/app/Console/Commands/PoniverseApiSetup.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use GuzzleHttp\Exception\ClientException; use Illuminate\Console\Command; diff --git a/app/Console/Commands/RebuildArtists.php b/app/Console/Commands/RebuildArtists.php index c82a5374..638d6000 100644 --- a/app/Console/Commands/RebuildArtists.php +++ b/app/Console/Commands/RebuildArtists.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; class RebuildArtists extends Command { diff --git a/app/Console/Commands/RebuildFilesizes.php b/app/Console/Commands/RebuildFilesizes.php index 82acf3f7..8fd75d23 100644 --- a/app/Console/Commands/RebuildFilesizes.php +++ b/app/Console/Commands/RebuildFilesizes.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use File; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Models\TrackFile; class RebuildFilesizes extends Command { diff --git a/app/Console/Commands/RebuildImages.php b/app/Console/Commands/RebuildImages.php index 408af47a..8c257e6a 100644 --- a/app/Console/Commands/RebuildImages.php +++ b/app/Console/Commands/RebuildImages.php @@ -17,10 +17,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\Image; +use App\Models\Image; use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException; use Symfony\Component\HttpFoundation\File\File; diff --git a/app/Console/Commands/RebuildSearchIndex.php b/app/Console/Commands/RebuildSearchIndex.php index 6530cc10..d1702b0e 100644 --- a/app/Console/Commands/RebuildSearchIndex.php +++ b/app/Console/Commands/RebuildSearchIndex.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Database\Eloquent\Collection; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; class RebuildSearchIndex extends Command { diff --git a/app/Console/Commands/RebuildTags.php b/app/Console/Commands/RebuildTags.php index c8dc2967..54e77352 100644 --- a/app/Console/Commands/RebuildTags.php +++ b/app/Console/Commands/RebuildTags.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use Illuminate\Console\Command; class RebuildTags extends Command diff --git a/app/Console/Commands/RebuildTrack.php b/app/Console/Commands/RebuildTrack.php index 18db645f..ea139fba 100644 --- a/app/Console/Commands/RebuildTrack.php +++ b/app/Console/Commands/RebuildTrack.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Commands\GenerateTrackFilesCommand; -use Poniverse\Ponyfm\Jobs\EncodeTrackFile; -use Poniverse\Ponyfm\Models\Track; +use App\Commands\GenerateTrackFilesCommand; +use App\Jobs\EncodeTrackFile; +use App\Models\Track; class RebuildTrack extends Command { diff --git a/app/Console/Commands/RebuildTrackCache.php b/app/Console/Commands/RebuildTrackCache.php index 0466228f..7fa7db48 100644 --- a/app/Console/Commands/RebuildTrackCache.php +++ b/app/Console/Commands/RebuildTrackCache.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use File; use Illuminate\Console\Command; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Jobs\EncodeTrackFile; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Jobs\EncodeTrackFile; +use App\Models\Track; +use App\Models\TrackFile; class RebuildTrackCache extends Command { diff --git a/app/Console/Commands/RefreshCache.php b/app/Console/Commands/RefreshCache.php index 95ce4eda..0b6e4611 100644 --- a/app/Console/Commands/RefreshCache.php +++ b/app/Console/Commands/RefreshCache.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; -use Poniverse\Ponyfm\Models\ResourceLogItem; +use App\Models\ResourceLogItem; use DB; use Illuminate\Console\Command; diff --git a/app/Console/Commands/SyncPoniverseAccounts.php b/app/Console/Commands/SyncPoniverseAccounts.php index 204244dd..d508f05c 100644 --- a/app/Console/Commands/SyncPoniverseAccounts.php +++ b/app/Console/Commands/SyncPoniverseAccounts.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use Illuminate\Console\Command; use League\OAuth2\Client\Token\AccessToken; use Poniverse\Lib\Client; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; class SyncPoniverseAccounts extends Command { diff --git a/app/Console/Commands/VersionFiles.php b/app/Console/Commands/VersionFiles.php index dbc22b46..1129a0b3 100644 --- a/app/Console/Commands/VersionFiles.php +++ b/app/Console/Commands/VersionFiles.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console\Commands; +namespace App\Console\Commands; use File; use Illuminate\Console\Command; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Models\TrackFile; class VersionFiles extends Command { diff --git a/app/Console/Kernel.php b/app/Console/Kernel.php index 353d3847..7078cd8d 100644 --- a/app/Console/Kernel.php +++ b/app/Console/Kernel.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Console; +namespace App\Console; use Illuminate\Console\Scheduling\Schedule; use Illuminate\Foundation\Console\Kernel as ConsoleKernel; diff --git a/app/Contracts/Commentable.php b/app/Contracts/Commentable.php index 2644670b..a246f72d 100644 --- a/app/Contracts/Commentable.php +++ b/app/Contracts/Commentable.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Contracts; +namespace App\Contracts; use Illuminate\Database\Eloquent\Relations\HasMany; @@ -26,7 +26,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany; * This interface is used for type safety when referring to entities that * are capable of accepting comments. * - * @package Poniverse\Ponyfm\Contracts + * @package App\Contracts */ interface Commentable extends GeneratesNotifications { diff --git a/app/Contracts/Favouritable.php b/app/Contracts/Favouritable.php index 753e4151..31474eb0 100644 --- a/app/Contracts/Favouritable.php +++ b/app/Contracts/Favouritable.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Contracts; +namespace App\Contracts; use Illuminate\Database\Eloquent\Relations\HasMany; @@ -26,7 +26,7 @@ use Illuminate\Database\Eloquent\Relations\HasMany; * This interface is used for type safety when referring to entities that * are capable of being favourited. * - * @package Poniverse\Ponyfm\Contracts + * @package App\Contracts */ interface Favouritable extends GeneratesNotifications { diff --git a/app/Contracts/GeneratesNotifications.php b/app/Contracts/GeneratesNotifications.php index 007add1b..fea214fe 100644 --- a/app/Contracts/GeneratesNotifications.php +++ b/app/Contracts/GeneratesNotifications.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Contracts; +namespace App\Contracts; use Illuminate\Database\Eloquent\Relations\MorphMany; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; /** * This interface is used for type safety when referring to entities that can be * the "target resource" of a notification (ie. what the notification is about). * - * @package Poniverse\Ponyfm\Contracts + * @package App\Contracts */ interface GeneratesNotifications { diff --git a/app/Contracts/NotificationHandler.php b/app/Contracts/NotificationHandler.php index 4c096252..16709358 100644 --- a/app/Contracts/NotificationHandler.php +++ b/app/Contracts/NotificationHandler.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Contracts; +namespace App\Contracts; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Comment; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; /** * Interface NotificationHandler - * @package Poniverse\Ponyfm\Contracts + * @package App\Contracts * * Each method in this interface represents a type of notification. To add a new * type of notification, add a method for it to this interface and every class diff --git a/app/Contracts/Searchable.php b/app/Contracts/Searchable.php index 219d1104..cb228e32 100644 --- a/app/Contracts/Searchable.php +++ b/app/Contracts/Searchable.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Contracts; +namespace App\Contracts; interface Searchable { diff --git a/app/Exceptions/Handler.php b/app/Exceptions/Handler.php index a9638efc..0fc704a7 100644 --- a/app/Exceptions/Handler.php +++ b/app/Exceptions/Handler.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Exceptions; +namespace App\Exceptions; use Exception; use Illuminate\Auth\AuthenticationException; diff --git a/app/Exceptions/InvalidEncodeOptionsException.php b/app/Exceptions/InvalidEncodeOptionsException.php index 0cbc31c2..0e19e38b 100644 --- a/app/Exceptions/InvalidEncodeOptionsException.php +++ b/app/Exceptions/InvalidEncodeOptionsException.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Exceptions; +namespace App\Exceptions; use InvalidArgumentException; diff --git a/app/Exceptions/TrackFileNotFoundException.php b/app/Exceptions/TrackFileNotFoundException.php index b4b2bc80..2aeb3097 100644 --- a/app/Exceptions/TrackFileNotFoundException.php +++ b/app/Exceptions/TrackFileNotFoundException.php @@ -18,13 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Exceptions; +namespace App\Exceptions; use Illuminate\Database\Eloquent\ModelNotFoundException; /** * Class TrackFileNotFoundException - * @package Poniverse\Ponyfm * * This exception is used to indicate that the requested `TrackFile` object * does not exist. This is useful when dealing with albums or playlists that diff --git a/app/Facades/Notification.php b/app/Facades/Notification.php index 7cda63af..4fcefc6b 100644 --- a/app/Facades/Notification.php +++ b/app/Facades/Notification.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Facades; +namespace App\Facades; use Illuminate\Support\Facades\Facade; diff --git a/app/Http/Controllers/AccountController.php b/app/Http/Controllers/AccountController.php index 675a3a70..c39995aa 100644 --- a/app/Http/Controllers/AccountController.php +++ b/app/Http/Controllers/AccountController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use Config; use Redirect; diff --git a/app/Http/Controllers/AdminController.php b/app/Http/Controllers/AdminController.php index 84dd43ed..541cb5b8 100644 --- a/app/Http/Controllers/AdminController.php +++ b/app/Http/Controllers/AdminController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use View; diff --git a/app/Http/Controllers/AlbumsController.php b/app/Http/Controllers/AlbumsController.php index 6c206ce3..32b1811d 100644 --- a/app/Http/Controllers/AlbumsController.php +++ b/app/Http/Controllers/AlbumsController.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; -use Poniverse\Ponyfm\AlbumDownloader; +use App\AlbumDownloader; use App; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Album; +use App\Models\ResourceLogItem; +use App\Models\Track; use Redirect; use View; diff --git a/app/Http/Controllers/Api/Mobile/TracksController.php b/app/Http/Controllers/Api/Mobile/TracksController.php index 7dc522d3..5bce6324 100644 --- a/app/Http/Controllers/Api/Mobile/TracksController.php +++ b/app/Http/Controllers/Api/Mobile/TracksController.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Mobile; +namespace App\Http\Controllers\Api\Mobile; -use Poniverse\Ponyfm\Http\Controllers\Controller; -use Poniverse\Ponyfm\Models\Track; +use App\Http\Controllers\Controller; +use App\Models\Track; use Response; class TracksController extends Controller diff --git a/app/Http/Controllers/Api/V1/TracksController.php b/app/Http/Controllers/Api/V1/TracksController.php index 1714909a..f0e75f3a 100644 --- a/app/Http/Controllers/Api/V1/TracksController.php +++ b/app/Http/Controllers/Api/V1/TracksController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\V1; +namespace App\Http\Controllers\Api\V1; -use Poniverse\Ponyfm\Commands\UploadTrackCommand; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Track; +use App\Commands\UploadTrackCommand; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Image; +use App\Models\Track; use Response; class TracksController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/AccountController.php b/app/Http/Controllers/Api/Web/AccountController.php index e6511abb..475d56f1 100644 --- a/app/Http/Controllers/Api/Web/AccountController.php +++ b/app/Http/Controllers/Api/Web/AccountController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Commands\SaveAccountSettingsCommand; -use Poniverse\Ponyfm\Models\User; -use Poniverse\Ponyfm\Models\Image; +use App\Http\Controllers\ApiControllerBase; +use App\Commands\SaveAccountSettingsCommand; +use App\Models\User; +use App\Models\Image; use Gate; use Auth; use Request; diff --git a/app/Http/Controllers/Api/Web/AlbumsController.php b/app/Http/Controllers/Api/Web/AlbumsController.php index 80a5caad..58a1a52d 100644 --- a/app/Http/Controllers/Api/Web/AlbumsController.php +++ b/app/Http/Controllers/Api/Web/AlbumsController.php @@ -18,22 +18,22 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Illuminate\Database\Eloquent\ModelNotFoundException; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Commands\CreateAlbumCommand; -use Poniverse\Ponyfm\Commands\DeleteAlbumCommand; -use Poniverse\Ponyfm\Commands\EditAlbumCommand; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\ResourceLogItem; +use App\Models\Album; +use App\Commands\CreateAlbumCommand; +use App\Commands\DeleteAlbumCommand; +use App\Commands\EditAlbumCommand; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Image; +use App\Models\ResourceLogItem; use Auth; use Gate; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use Response; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; class AlbumsController extends ApiControllerBase { diff --git a/app/Http/Controllers/Api/Web/AlexaController.php b/app/Http/Controllers/Api/Web/AlexaController.php index 69651c31..876b1b47 100644 --- a/app/Http/Controllers/Api/Web/AlexaController.php +++ b/app/Http/Controllers/Api/Web/AlexaController.php @@ -1,13 +1,13 @@ . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Carbon\Carbon; -use Poniverse\Ponyfm\Commands\CreateAnnouncementCommand; -use Poniverse\Ponyfm\Http\Controllers\Controller; -use Poniverse\Ponyfm\Models\Announcement; +use App\Commands\CreateAnnouncementCommand; +use App\Http\Controllers\Controller; +use App\Models\Announcement; use Request; use Response; diff --git a/app/Http/Controllers/Api/Web/ArtistsController.php b/app/Http/Controllers/Api/Web/ArtistsController.php index 17fd9cd7..38f1fd9e 100644 --- a/app/Http/Controllers/Api/Web/ArtistsController.php +++ b/app/Http/Controllers/Api/Web/ArtistsController.php @@ -18,18 +18,18 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Gate; -use Poniverse\Ponyfm\Commands\CreateUserCommand; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Favourite; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; -use Poniverse\Ponyfm\Models\Follower; +use App\Commands\CreateUserCommand; +use App\Models\Album; +use App\Models\Comment; +use App\Models\Favourite; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Image; +use App\Models\Track; +use App\Models\User; +use App\Models\Follower; use App; use Illuminate\Support\Facades\Request; use Response; @@ -69,10 +69,10 @@ class ArtistsController extends ApiControllerBase $albums = []; foreach ($favs as $fav) { - if ($fav->type == 'Poniverse\Ponyfm\Models\Track') { + if ($fav->type == 'App\Models\Track') { $tracks[] = Track::mapPublicTrackSummary($fav->track); } else { - if ($fav->type == 'Poniverse\Ponyfm\Models\Album') { + if ($fav->type == 'App\Models\Album') { $albums[] = Album::mapPublicAlbumSummary($fav->album); } } diff --git a/app/Http/Controllers/Api/Web/AuthController.php b/app/Http/Controllers/Api/Web/AuthController.php index f5ab80a4..25f5c070 100644 --- a/app/Http/Controllers/Api/Web/AuthController.php +++ b/app/Http/Controllers/Api/Web/AuthController.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Http\Controllers\Controller; +use App\Http\Controllers\Controller; class AuthController extends Controller { diff --git a/app/Http/Controllers/Api/Web/CommentsController.php b/app/Http/Controllers/Api/Web/CommentsController.php index 1749d272..857d4be1 100644 --- a/app/Http/Controllers/Api/Web/CommentsController.php +++ b/app/Http/Controllers/Api/Web/CommentsController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use App; -use Poniverse\Ponyfm\Commands\CreateCommentCommand; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; +use App\Commands\CreateCommentCommand; +use App\Models\Comment; +use App\Http\Controllers\ApiControllerBase; use Illuminate\Support\Facades\Request; use Response; diff --git a/app/Http/Controllers/Api/Web/DashboardController.php b/app/Http/Controllers/Api/Web/DashboardController.php index 25d7ee76..330a2ca6 100644 --- a/app/Http/Controllers/Api/Web/DashboardController.php +++ b/app/Http/Controllers/Api/Web/DashboardController.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Track; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Track; use Auth; use Response; diff --git a/app/Http/Controllers/Api/Web/FavouritesController.php b/app/Http/Controllers/Api/Web/FavouritesController.php index daee30ba..b5cb829f 100644 --- a/app/Http/Controllers/Api/Web/FavouritesController.php +++ b/app/Http/Controllers/Api/Web/FavouritesController.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Commands\ToggleFavouriteCommand; -use Poniverse\Ponyfm\Models\Favourite; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Album; +use App\Commands\ToggleFavouriteCommand; +use App\Models\Favourite; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Playlist; +use App\Models\Track; use Auth; use Illuminate\Support\Facades\Request; use Response; diff --git a/app/Http/Controllers/Api/Web/FollowController.php b/app/Http/Controllers/Api/Web/FollowController.php index 5ea66dab..1916382c 100644 --- a/app/Http/Controllers/Api/Web/FollowController.php +++ b/app/Http/Controllers/Api/Web/FollowController.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Commands\ToggleFollowingCommand; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; +use App\Commands\ToggleFollowingCommand; +use App\Http\Controllers\ApiControllerBase; use Illuminate\Support\Facades\Request; class FollowController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/GenresController.php b/app/Http/Controllers/Api/Web/GenresController.php index 341a603a..5fbdb597 100644 --- a/app/Http/Controllers/Api/Web/GenresController.php +++ b/app/Http/Controllers/Api/Web/GenresController.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Commands\CreateGenreCommand; -use Poniverse\Ponyfm\Commands\DeleteGenreCommand; -use Poniverse\Ponyfm\Commands\RenameGenreCommand; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; +use App\Commands\CreateGenreCommand; +use App\Commands\DeleteGenreCommand; +use App\Commands\RenameGenreCommand; +use App\Models\Genre; +use App\Http\Controllers\ApiControllerBase; use Response; class GenresController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/ImagesController.php b/app/Http/Controllers/Api/Web/ImagesController.php index 512f2256..0aeae788 100644 --- a/app/Http/Controllers/Api/Web/ImagesController.php +++ b/app/Http/Controllers/Api/Web/ImagesController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Auth; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\User; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Image; +use App\Models\User; use Response; class ImagesController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/NotificationsController.php b/app/Http/Controllers/Api/Web/NotificationsController.php index d366b575..669bfdf5 100644 --- a/app/Http/Controllers/Api/Web/NotificationsController.php +++ b/app/Http/Controllers/Api/Web/NotificationsController.php @@ -18,15 +18,15 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Auth; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Notification; -use Poniverse\Ponyfm\Models\Subscription; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Notification; +use App\Models\Subscription; +use App\Models\Track; +use App\Models\User; use Minishlink\WebPush\WebPush; class NotificationsController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/PlaylistsController.php b/app/Http/Controllers/Api/Web/PlaylistsController.php index b3ba03c2..345a9b36 100644 --- a/app/Http/Controllers/Api/Web/PlaylistsController.php +++ b/app/Http/Controllers/Api/Web/PlaylistsController.php @@ -18,23 +18,23 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Illuminate\Database\Eloquent\ModelNotFoundException; -use Poniverse\Ponyfm\Commands\AddTrackToPlaylistCommand; -use Poniverse\Ponyfm\Commands\CreatePlaylistCommand; -use Poniverse\Ponyfm\Commands\DeletePlaylistCommand; -use Poniverse\Ponyfm\Commands\EditPlaylistCommand; -use Poniverse\Ponyfm\Commands\RemoveTrackFromPlaylistCommand; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\Image; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\ResourceLogItem; +use App\Commands\AddTrackToPlaylistCommand; +use App\Commands\CreatePlaylistCommand; +use App\Commands\DeletePlaylistCommand; +use App\Commands\EditPlaylistCommand; +use App\Commands\RemoveTrackFromPlaylistCommand; +use App\Http\Controllers\ApiControllerBase; +use App\Models\Image; +use App\Models\Playlist; +use App\Models\ResourceLogItem; use Auth; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use Response; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; class PlaylistsController extends ApiControllerBase { diff --git a/app/Http/Controllers/Api/Web/SearchController.php b/app/Http/Controllers/Api/Web/SearchController.php index 1bb5741a..f73b5e4b 100644 --- a/app/Http/Controllers/Api/Web/SearchController.php +++ b/app/Http/Controllers/Api/Web/SearchController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Elasticsearch; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; +use App\Http\Controllers\ApiControllerBase; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Library\Search; +use App\Library\Search; use Response; class SearchController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/ShowSongsController.php b/app/Http/Controllers/Api/Web/ShowSongsController.php index 01b7f779..0d51112a 100644 --- a/app/Http/Controllers/Api/Web/ShowSongsController.php +++ b/app/Http/Controllers/Api/Web/ShowSongsController.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Commands\CreateShowSongCommand; -use Poniverse\Ponyfm\Commands\DeleteShowSongCommand; -use Poniverse\Ponyfm\Commands\RenameShowSongCommand; -use Poniverse\Ponyfm\Models\ShowSong; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; +use App\Commands\CreateShowSongCommand; +use App\Commands\DeleteShowSongCommand; +use App\Commands\RenameShowSongCommand; +use App\Models\ShowSong; +use App\Http\Controllers\ApiControllerBase; use Response; class ShowSongsController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/StatsController.php b/app/Http/Controllers/Api/Web/StatsController.php index e46e9786..e1c08203 100644 --- a/app/Http/Controllers/Api/Web/StatsController.php +++ b/app/Http/Controllers/Api/Web/StatsController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Illuminate\Database\Eloquent\ModelNotFoundException; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\Track; +use App\Http\Controllers\ApiControllerBase; +use App\Models\ResourceLogItem; +use App\Models\Track; use Auth; use Cache; use DB; diff --git a/app/Http/Controllers/Api/Web/TaxonomiesController.php b/app/Http/Controllers/Api/Web/TaxonomiesController.php index 9079ad63..621e8767 100644 --- a/app/Http/Controllers/Api/Web/TaxonomiesController.php +++ b/app/Http/Controllers/Api/Web/TaxonomiesController.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Models\License; -use Poniverse\Ponyfm\Models\ShowSong; -use Poniverse\Ponyfm\Models\TrackType; +use App\Models\Genre; +use App\Http\Controllers\ApiControllerBase; +use App\Models\License; +use App\Models\ShowSong; +use App\Models\TrackType; use DB; class TaxonomiesController extends ApiControllerBase diff --git a/app/Http/Controllers/Api/Web/TracksController.php b/app/Http/Controllers/Api/Web/TracksController.php index 27c617b4..e090bdb7 100644 --- a/app/Http/Controllers/Api/Web/TracksController.php +++ b/app/Http/Controllers/Api/Web/TracksController.php @@ -18,24 +18,24 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers\Api\Web; +namespace App\Http\Controllers\Api\Web; use Auth; use File; use Illuminate\Database\Eloquent\ModelNotFoundException; use Illuminate\Support\Facades\Request; -use Poniverse\Ponyfm\Commands\DeleteTrackCommand; -use Poniverse\Ponyfm\Commands\EditTrackCommand; -use Poniverse\Ponyfm\Commands\GenerateTrackFilesCommand; -use Poniverse\Ponyfm\Commands\UploadTrackCommand; -use Poniverse\Ponyfm\Http\Controllers\ApiControllerBase; -use Poniverse\Ponyfm\Jobs\EncodeTrackFile; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackType; -use Poniverse\Ponyfm\Models\TrackFile; -use Poniverse\Ponyfm\Models\User; +use App\Commands\DeleteTrackCommand; +use App\Commands\EditTrackCommand; +use App\Commands\GenerateTrackFilesCommand; +use App\Commands\UploadTrackCommand; +use App\Http\Controllers\ApiControllerBase; +use App\Jobs\EncodeTrackFile; +use App\Models\Genre; +use App\Models\ResourceLogItem; +use App\Models\Track; +use App\Models\TrackType; +use App\Models\TrackFile; +use App\Models\User; use Response; use Symfony\Component\HttpFoundation\File\UploadedFile; diff --git a/app/Http/Controllers/ApiControllerBase.php b/app/Http/Controllers/ApiControllerBase.php index 163791c5..59453b6c 100644 --- a/app/Http/Controllers/ApiControllerBase.php +++ b/app/Http/Controllers/ApiControllerBase.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; -use Poniverse\Ponyfm\Commands\CommandBase; +use App\Commands\CommandBase; use Response; abstract class ApiControllerBase extends Controller diff --git a/app/Http/Controllers/ArtistsController.php b/app/Http/Controllers/ArtistsController.php index 93053e2c..53e0e8e0 100644 --- a/app/Http/Controllers/ArtistsController.php +++ b/app/Http/Controllers/ArtistsController.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use App; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use View; use Redirect; diff --git a/app/Http/Controllers/AuthController.php b/app/Http/Controllers/AuthController.php index 3f0c5a1b..e14d6704 100644 --- a/app/Http/Controllers/AuthController.php +++ b/app/Http/Controllers/AuthController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use Carbon\Carbon; use Illuminate\Support\Facades\Input; @@ -26,8 +26,8 @@ use League\OAuth2\Client\Provider\Exception\IdentityProviderException; use League\OAuth2\Client\Token\AccessToken; use Log; use Poniverse\Lib\Client; -use Poniverse\Ponyfm\Models\Activity; -use Poniverse\Ponyfm\Models\User; +use App\Models\Activity; +use App\Models\User; use Auth; use DB; use Request; diff --git a/app/Http/Controllers/ContentController.php b/app/Http/Controllers/ContentController.php index 53d30053..be6d996e 100644 --- a/app/Http/Controllers/ContentController.php +++ b/app/Http/Controllers/ContentController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use View; diff --git a/app/Http/Controllers/Controller.php b/app/Http/Controllers/Controller.php index 1aa98532..c111edce 100644 --- a/app/Http/Controllers/Controller.php +++ b/app/Http/Controllers/Controller.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; use Illuminate\Foundation\Bus\DispatchesJobs; diff --git a/app/Http/Controllers/HomeController.php b/app/Http/Controllers/HomeController.php index 4ae05911..fa8c0301 100644 --- a/app/Http/Controllers/HomeController.php +++ b/app/Http/Controllers/HomeController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use View; diff --git a/app/Http/Controllers/ImagesController.php b/app/Http/Controllers/ImagesController.php index de2c7f44..615eacd5 100644 --- a/app/Http/Controllers/ImagesController.php +++ b/app/Http/Controllers/ImagesController.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; -use Poniverse\Ponyfm\Models\Image; +use App\Models\Image; use Config; use App; use Redirect; diff --git a/app/Http/Controllers/NotificationsController.php b/app/Http/Controllers/NotificationsController.php index 45592825..ce7f18c0 100644 --- a/app/Http/Controllers/NotificationsController.php +++ b/app/Http/Controllers/NotificationsController.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use App; use Auth; use DB; -use Poniverse\Ponyfm\Models\Email; -use Poniverse\Ponyfm\Models\EmailSubscription; +use App\Models\Email; +use App\Models\EmailSubscription; use View; diff --git a/app/Http/Controllers/PlaylistsController.php b/app/Http/Controllers/PlaylistsController.php index 31688759..2dc28565 100644 --- a/app/Http/Controllers/PlaylistsController.php +++ b/app/Http/Controllers/PlaylistsController.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use App; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\PlaylistDownloader; +use App\Models\Playlist; +use App\Models\ResourceLogItem; +use App\Models\Track; +use App\PlaylistDownloader; use Auth; use Redirect; use View; diff --git a/app/Http/Controllers/StatsController.php b/app/Http/Controllers/StatsController.php index f831cd42..37269615 100644 --- a/app/Http/Controllers/StatsController.php +++ b/app/Http/Controllers/StatsController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use View; diff --git a/app/Http/Controllers/TracksController.php b/app/Http/Controllers/TracksController.php index 87236614..048d43da 100644 --- a/app/Http/Controllers/TracksController.php +++ b/app/Http/Controllers/TracksController.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use Illuminate\Http\Request; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Models\ResourceLogItem; +use App\Models\Track; +use App\Models\TrackFile; use Auth; use Config; use App; diff --git a/app/Http/Controllers/UploaderController.php b/app/Http/Controllers/UploaderController.php index 166095de..fc184447 100644 --- a/app/Http/Controllers/UploaderController.php +++ b/app/Http/Controllers/UploaderController.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Controllers; +namespace App\Http\Controllers; use View; diff --git a/app/Http/Kernel.php b/app/Http/Kernel.php index a140d028..564847f3 100644 --- a/app/Http/Kernel.php +++ b/app/Http/Kernel.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http; +namespace App\Http; use Illuminate\Foundation\Http\Kernel as HttpKernel; @@ -35,13 +35,13 @@ class Kernel extends HttpKernel protected $middlewareGroups = [ 'web' => [ - \Poniverse\Ponyfm\Http\Middleware\EncryptCookies::class, + \App\Http\Middleware\EncryptCookies::class, \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, \Illuminate\Session\Middleware\StartSession::class, \Illuminate\View\Middleware\ShareErrorsFromSession::class, \Illuminate\Routing\Middleware\SubstituteBindings::class, - \Poniverse\Ponyfm\Http\Middleware\VerifyCsrfToken::class, - \Poniverse\Ponyfm\Http\Middleware\DisabledAccountCheck::class, + \App\Http\Middleware\VerifyCsrfToken::class, + \App\Http\Middleware\DisabledAccountCheck::class, ] ]; @@ -51,12 +51,12 @@ class Kernel extends HttpKernel * @var array */ protected $routeMiddleware = [ - 'auth' => \Poniverse\Ponyfm\Http\Middleware\Authenticate::class, + 'auth' => \App\Http\Middleware\Authenticate::class, 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class, - 'auth.oauth' => \Poniverse\Ponyfm\Http\Middleware\AuthenticateOAuth::class, - 'can' => \Poniverse\Ponyfm\Http\Middleware\Authorize::class, - 'json-exceptions' => \Poniverse\Ponyfm\Http\Middleware\JsonExceptions::class, - 'guest' => \Poniverse\Ponyfm\Http\Middleware\RedirectIfAuthenticated::class, + 'auth.oauth' => \App\Http\Middleware\AuthenticateOAuth::class, + 'can' => \App\Http\Middleware\Authorize::class, + 'json-exceptions' => \App\Http\Middleware\JsonExceptions::class, + 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 'cors' => \Barryvdh\Cors\HandleCors::class, ]; diff --git a/app/Http/Middleware/Authenticate.php b/app/Http/Middleware/Authenticate.php index ed8fccbe..d655273d 100644 --- a/app/Http/Middleware/Authenticate.php +++ b/app/Http/Middleware/Authenticate.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Illuminate\Contracts\Auth\Guard; diff --git a/app/Http/Middleware/AuthenticateOAuth.php b/app/Http/Middleware/AuthenticateOAuth.php index 6b53f07c..9a5883f7 100644 --- a/app/Http/Middleware/AuthenticateOAuth.php +++ b/app/Http/Middleware/AuthenticateOAuth.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Illuminate\Contracts\Auth\Guard; @@ -27,7 +27,7 @@ use Illuminate\Session\Store; use League\OAuth2\Client\Token\AccessToken; use Poniverse; use Poniverse\Lib\Client; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; use Symfony\Component\HttpKernel\Exception\AccessDeniedHttpException; class AuthenticateOAuth diff --git a/app/Http/Middleware/Authorize.php b/app/Http/Middleware/Authorize.php index b159af63..898cb72f 100644 --- a/app/Http/Middleware/Authorize.php +++ b/app/Http/Middleware/Authorize.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Gate; diff --git a/app/Http/Middleware/DisabledAccountCheck.php b/app/Http/Middleware/DisabledAccountCheck.php index fa32c57b..b4bc8e72 100644 --- a/app/Http/Middleware/DisabledAccountCheck.php +++ b/app/Http/Middleware/DisabledAccountCheck.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Illuminate\Contracts\Auth\Guard; diff --git a/app/Http/Middleware/EncryptCookies.php b/app/Http/Middleware/EncryptCookies.php index ba84c5c2..c4cf3cc1 100644 --- a/app/Http/Middleware/EncryptCookies.php +++ b/app/Http/Middleware/EncryptCookies.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Illuminate\Cookie\Middleware\EncryptCookies as Middleware; diff --git a/app/Http/Middleware/JsonExceptions.php b/app/Http/Middleware/JsonExceptions.php index b95da848..f508766f 100644 --- a/app/Http/Middleware/JsonExceptions.php +++ b/app/Http/Middleware/JsonExceptions.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Symfony\Component\HttpKernel\Exception\HttpException; /** * Class JsonExceptions - * @package Poniverse\Ponyfm\Http\Middleware + * @package App\Http\Middleware * * This middleware turns any HTTP exceptions thrown during the request * into a JSON response. To be used when implementing the API! diff --git a/app/Http/Middleware/RedirectIfAuthenticated.php b/app/Http/Middleware/RedirectIfAuthenticated.php index 70f0a7a9..9630047a 100644 --- a/app/Http/Middleware/RedirectIfAuthenticated.php +++ b/app/Http/Middleware/RedirectIfAuthenticated.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Closure; use Illuminate\Auth\AuthManager; diff --git a/app/Http/Middleware/VerifyCsrfToken.php b/app/Http/Middleware/VerifyCsrfToken.php index fd31df4d..8f3c1a90 100644 --- a/app/Http/Middleware/VerifyCsrfToken.php +++ b/app/Http/Middleware/VerifyCsrfToken.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Middleware; +namespace App\Http\Middleware; use Illuminate\Foundation\Http\Middleware\VerifyCsrfToken as Middleware; diff --git a/app/Http/Requests/Request.php b/app/Http/Requests/Request.php index 7bdb888e..44e34722 100644 --- a/app/Http/Requests/Request.php +++ b/app/Http/Requests/Request.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Http\Requests; +namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; diff --git a/app/Jobs/DeleteGenre.php b/app/Jobs/DeleteGenre.php index 988ec12b..ef030f01 100644 --- a/app/Jobs/DeleteGenre.php +++ b/app/Jobs/DeleteGenre.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Auth; use DB; -use Poniverse\Ponyfm\Models\Genre; +use App\Models\Genre; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Contracts\Queue\ShouldQueue; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use SerializesModels; class DeleteGenre extends Job implements ShouldQueue diff --git a/app/Jobs/DeleteShowSong.php b/app/Jobs/DeleteShowSong.php index 40928a60..292e390a 100644 --- a/app/Jobs/DeleteShowSong.php +++ b/app/Jobs/DeleteShowSong.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Auth; use DB; -use Poniverse\Ponyfm\Models\ShowSong; +use App\Models\ShowSong; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Contracts\Queue\ShouldQueue; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use SerializesModels; class DeleteShowSong extends Job implements ShouldQueue diff --git a/app/Jobs/EncodeTrackFile.php b/app/Jobs/EncodeTrackFile.php index ddfe6653..868b419d 100644 --- a/app/Jobs/EncodeTrackFile.php +++ b/app/Jobs/EncodeTrackFile.php @@ -19,7 +19,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Carbon\Carbon; use Config; @@ -29,9 +29,9 @@ use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Queue\SerializesModels; use Log; -use Poniverse\Ponyfm\Exceptions\InvalidEncodeOptionsException; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Exceptions\InvalidEncodeOptionsException; +use App\Models\Track; +use App\Models\TrackFile; use Symfony\Component\Process\Exception\ProcessFailedException; use Symfony\Component\Process\Process; diff --git a/app/Jobs/Job.php b/app/Jobs/Job.php index db1615bc..337ae522 100644 --- a/app/Jobs/Job.php +++ b/app/Jobs/Job.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use App; use DB; diff --git a/app/Jobs/SendNotifications.php b/app/Jobs/SendNotifications.php index 98f3ddf8..342cb9db 100644 --- a/app/Jobs/SendNotifications.php +++ b/app/Jobs/SendNotifications.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Queue\InteractsWithQueue; -use Poniverse\Ponyfm\Jobs\Job; -use Poniverse\Ponyfm\Library\Notifications\Drivers\AbstractDriver; -use Poniverse\Ponyfm\Library\Notifications\Drivers\EmailDriver; -use Poniverse\Ponyfm\Library\Notifications\Drivers\NativeDriver; -use Poniverse\Ponyfm\Library\Notifications\Drivers\PonyfmDriver; -use Poniverse\Ponyfm\Models\User; +use App\Jobs\Job; +use App\Library\Notifications\Drivers\AbstractDriver; +use App\Library\Notifications\Drivers\EmailDriver; +use App\Library\Notifications\Drivers\NativeDriver; +use App\Library\Notifications\Drivers\PonyfmDriver; +use App\Models\User; use SerializesModels; class SendNotifications extends Job implements ShouldQueue diff --git a/app/Jobs/UpdateSearchIndexForEntity.php b/app/Jobs/UpdateSearchIndexForEntity.php index 9676a9a4..0247e65b 100644 --- a/app/Jobs/UpdateSearchIndexForEntity.php +++ b/app/Jobs/UpdateSearchIndexForEntity.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use DB; use Illuminate\Contracts\Queue\ShouldQueue; use Illuminate\Database\Eloquent\Model; use Illuminate\Queue\InteractsWithQueue; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Jobs\Job; +use App\Contracts\Searchable; +use App\Jobs\Job; use SerializesModels; class UpdateSearchIndexForEntity extends Job implements ShouldQueue diff --git a/app/Jobs/UpdateTagsForRenamedGenre.php b/app/Jobs/UpdateTagsForRenamedGenre.php index 18f02eef..75257910 100644 --- a/app/Jobs/UpdateTagsForRenamedGenre.php +++ b/app/Jobs/UpdateTagsForRenamedGenre.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Auth; use Cache; use DB; use Log; -use Poniverse\Ponyfm\Models\Genre; +use App\Models\Genre; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Contracts\Queue\ShouldQueue; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use SerializesModels; /** @@ -36,7 +36,7 @@ use SerializesModels; * NOTE: It is assumed that the genre passed into this job has already been renamed! * All this job does is update the tags in that genre's tracks. * - * @package Poniverse\Ponyfm\Jobs + * @package App\Jobs */ class UpdateTagsForRenamedGenre extends Job implements ShouldQueue { diff --git a/app/Jobs/UpdateTagsForRenamedShowSong.php b/app/Jobs/UpdateTagsForRenamedShowSong.php index dc70d76b..e178a401 100644 --- a/app/Jobs/UpdateTagsForRenamedShowSong.php +++ b/app/Jobs/UpdateTagsForRenamedShowSong.php @@ -18,15 +18,15 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Jobs; +namespace App\Jobs; use Auth; use Cache; use Log; -use Poniverse\Ponyfm\Models\ShowSong; +use App\Models\ShowSong; use Illuminate\Queue\InteractsWithQueue; use Illuminate\Contracts\Queue\ShouldQueue; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use SerializesModels; /** @@ -35,7 +35,7 @@ use SerializesModels; * NOTE: It is assumed that the genre passed into this job has already been renamed! * All this job does is update the tags in that genre's tracks. * - * @package Poniverse\Ponyfm\Jobs + * @package App\Jobs */ class UpdateTagsForRenamedShowSong extends Job implements ShouldQueue { diff --git a/app/Library/Notifications/Drivers/AbstractDriver.php b/app/Library/Notifications/Drivers/AbstractDriver.php index 126f7dac..60439a1c 100644 --- a/app/Library/Notifications/Drivers/AbstractDriver.php +++ b/app/Library/Notifications/Drivers/AbstractDriver.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library\Notifications\Drivers; +namespace App\Library\Notifications\Drivers; use ArrayAccess; -use Poniverse\Ponyfm\Contracts\NotificationHandler; -use Poniverse\Ponyfm\Library\Notifications\RecipientFinder; -use Poniverse\Ponyfm\Models\User; +use App\Contracts\NotificationHandler; +use App\Library\Notifications\RecipientFinder; +use App\Models\User; abstract class AbstractDriver implements NotificationHandler { diff --git a/app/Library/Notifications/Drivers/NativeDriver.php b/app/Library/Notifications/Drivers/NativeDriver.php index 4c314276..51ae0cb8 100644 --- a/app/Library/Notifications/Drivers/NativeDriver.php +++ b/app/Library/Notifications/Drivers/NativeDriver.php @@ -18,15 +18,15 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library\Notifications\Drivers; +namespace App\Library\Notifications\Drivers; use Config; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Models\Activity; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Contracts\Favouritable; +use App\Models\Activity; +use App\Models\Comment; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; use Minishlink\WebPush\WebPush; class NativeDriver extends AbstractDriver diff --git a/app/Library/Notifications/Drivers/PonyfmDriver.php b/app/Library/Notifications/Drivers/PonyfmDriver.php index 7670e552..7b869344 100644 --- a/app/Library/Notifications/Drivers/PonyfmDriver.php +++ b/app/Library/Notifications/Drivers/PonyfmDriver.php @@ -18,20 +18,20 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library\Notifications\Drivers; +namespace App\Library\Notifications\Drivers; use Carbon\Carbon; use Log; use Mail; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Mail\BaseNotification; -use Poniverse\Ponyfm\Models\Activity; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Email; -use Poniverse\Ponyfm\Models\Notification; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Contracts\Favouritable; +use App\Mail\BaseNotification; +use App\Models\Activity; +use App\Models\Comment; +use App\Models\Email; +use App\Models\Notification; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; class PonyfmDriver extends AbstractDriver { diff --git a/app/Library/Notifications/NotificationManager.php b/app/Library/Notifications/NotificationManager.php index ec692990..6025ae26 100644 --- a/app/Library/Notifications/NotificationManager.php +++ b/app/Library/Notifications/NotificationManager.php @@ -18,20 +18,20 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library\Notifications; +namespace App\Library\Notifications; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Contracts\NotificationHandler; -use Poniverse\Ponyfm\Jobs\SendNotifications; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Contracts\Favouritable; +use App\Contracts\NotificationHandler; +use App\Jobs\SendNotifications; +use App\Models\Comment; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; /** * Class NotificationManager - * @package Poniverse\Ponyfm\Library + * @package App\Library * * This class exists mostly to maintain type safety when sending notifications * from around the Pony.fm codebase. There should be virtually zero logic here. diff --git a/app/Library/Notifications/RecipientFinder.php b/app/Library/Notifications/RecipientFinder.php index 4af10859..aa8b8cec 100644 --- a/app/Library/Notifications/RecipientFinder.php +++ b/app/Library/Notifications/RecipientFinder.php @@ -18,25 +18,25 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library\Notifications; +namespace App\Library\Notifications; use Illuminate\Database\Eloquent\Builder; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Contracts\NotificationHandler; -use Poniverse\Ponyfm\Jobs\SendNotifications; -use Poniverse\Ponyfm\Library\Notifications\Drivers\NativeDriver; -use Poniverse\Ponyfm\Library\Notifications\Drivers\PonyfmDriver; -use Poniverse\Ponyfm\Models\Activity; -use Poniverse\Ponyfm\Models\Comment; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Subscription; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Contracts\Favouritable; +use App\Contracts\NotificationHandler; +use App\Jobs\SendNotifications; +use App\Library\Notifications\Drivers\NativeDriver; +use App\Library\Notifications\Drivers\PonyfmDriver; +use App\Models\Activity; +use App\Models\Comment; +use App\Models\Playlist; +use App\Models\Subscription; +use App\Models\Track; +use App\Models\User; /** * Class RecipientFinder - * @package Poniverse\Ponyfm\Library\Notifications + * @package App\Library\Notifications * * This class returns a list of users who are to receive a particular notification. * It is instantiated on a per-driver basis. Its methods return Eloquent query diff --git a/app/Library/Search.php b/app/Library/Search.php index a5c7fdfb..2dc65fbe 100644 --- a/app/Library/Search.php +++ b/app/Library/Search.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Library; +namespace App\Library; use DB; use Elasticsearch\Client; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Collection; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; class Search { diff --git a/app/Mail/BaseNotification.php b/app/Mail/BaseNotification.php index cb50a405..f999266e 100644 --- a/app/Mail/BaseNotification.php +++ b/app/Mail/BaseNotification.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; use Carbon\Carbon; use Illuminate\Bus\Queueable; use Illuminate\Mail\Mailable; use Illuminate\Queue\SerializesModels; -use Poniverse\Ponyfm\Models\Activity; -use Poniverse\Ponyfm\Models\Email; +use App\Models\Activity; +use App\Models\Email; abstract class BaseNotification extends Mailable { use Queueable, SerializesModels; @@ -33,13 +33,13 @@ abstract class BaseNotification extends Mailable { /** @var Email */ protected $emailRecord; - /** @var \Poniverse\Ponyfm\Models\Notification */ + /** @var \App\Models\Notification */ protected $notificationRecord; - /** @var \Poniverse\Ponyfm\Models\Activity */ + /** @var \App\Models\Activity */ protected $activityRecord; - /** @var \Poniverse\Ponyfm\Models\User */ + /** @var \App\Models\User */ protected $initiatingUser; /** diff --git a/app/Mail/ContentFavourited.php b/app/Mail/ContentFavourited.php index f8966072..fd04e57c 100644 --- a/app/Mail/ContentFavourited.php +++ b/app/Mail/ContentFavourited.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; class ContentFavourited extends BaseNotification { diff --git a/app/Mail/NewComment.php b/app/Mail/NewComment.php index ebac04bd..80acc135 100644 --- a/app/Mail/NewComment.php +++ b/app/Mail/NewComment.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; class NewComment extends BaseNotification diff --git a/app/Mail/NewFollower.php b/app/Mail/NewFollower.php index 2ef18a27..4f8d0932 100644 --- a/app/Mail/NewFollower.php +++ b/app/Mail/NewFollower.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; class NewFollower extends BaseNotification { diff --git a/app/Mail/NewPlaylist.php b/app/Mail/NewPlaylist.php index dfd36f8c..7ffa181b 100644 --- a/app/Mail/NewPlaylist.php +++ b/app/Mail/NewPlaylist.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; class NewPlaylist extends BaseNotification { diff --git a/app/Mail/NewTrack.php b/app/Mail/NewTrack.php index c4529db6..b83946d9 100644 --- a/app/Mail/NewTrack.php +++ b/app/Mail/NewTrack.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Mail; +namespace App\Mail; class NewTrack extends BaseNotification { diff --git a/app/Models/Activity.php b/app/Models/Activity.php index 258e0b76..8f22302d 100644 --- a/app/Models/Activity.php +++ b/app/Models/Activity.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; /** - * Poniverse\Ponyfm\Models\Activity + * App\Models\Activity * * @property integer $id * @property \Carbon\Carbon $created_at @@ -32,27 +32,27 @@ use Illuminate\Database\Eloquent\SoftDeletes; * @property boolean $activity_type * @property boolean $resource_type * @property integer $resource_id - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Notification[] $notifications - * @property-read \Poniverse\Ponyfm\Models\User $initiatingUser - * @property-read \Poniverse\Ponyfm\Models\Activity $resource + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Notification[] $notifications + * @property-read \App\Models\User $initiatingUser + * @property-read \App\Models\Activity $resource * @property-read mixed $url * @property-read mixed $thumbnail_url * @property-read mixed $text * @property string $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\User[] $notificationRecipients - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereActivityType($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereResourceType($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereResourceId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity whereDeletedAt($value) + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\User[] $notificationRecipients + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereActivityType($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereResourceType($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereResourceId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity whereDeletedAt($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Activity withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Activity withoutTrashed() */ class Activity extends Model { diff --git a/app/Models/Album.php b/app/Models/Album.php index 5be73676..e8603f24 100644 --- a/app/Models/Album.php +++ b/app/Models/Album.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use DB; use Exception; @@ -30,17 +30,17 @@ use Illuminate\Database\Eloquent\SoftDeletes; use Auth; use Gate; use Cache; -use Poniverse\Ponyfm\Contracts\Commentable; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Exceptions\TrackFileNotFoundException; -use Poniverse\Ponyfm\Traits\IndexedInElasticsearchTrait; -use Poniverse\Ponyfm\Traits\TrackCollection; -use Poniverse\Ponyfm\Traits\SlugTrait; +use App\Contracts\Commentable; +use App\Contracts\Favouritable; +use App\Contracts\Searchable; +use App\Exceptions\TrackFileNotFoundException; +use App\Traits\IndexedInElasticsearchTrait; +use App\Traits\TrackCollection; +use App\Traits\SlugTrait; use Venturecraft\Revisionable\RevisionableTrait; /** - * Poniverse\Ponyfm\Models\Album + * App\Models\Album * * @property integer $id * @property integer $user_id @@ -56,36 +56,36 @@ use Venturecraft\Revisionable\RevisionableTrait; * @property \Carbon\Carbon $created_at * @property string $updated_at * @property \Carbon\Carbon $deleted_at - * @property-read \Poniverse\Ponyfm\Models\User $user - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\ResourceUser[] $users - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Favourite[] $favourites - * @property-read \Poniverse\Ponyfm\Models\Image $cover - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $tracks - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Comment[] $comments + * @property-read \App\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ResourceUser[] $users + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Favourite[] $favourites + * @property-read \App\Models\Image $cover + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Comment[] $comments * @property-read mixed $url * @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album userDetails() - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $activities - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereSlug($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereDescription($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereCoverId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereTrackCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereViewCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereDownloadCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereFavouriteCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereCommentCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album whereDeletedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album userDetails() + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $activities + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereSlug($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereDescription($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereCoverId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereTrackCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereViewCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereDownloadCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereFavouriteCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereCommentCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album whereDeletedAt($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Album withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Album withoutTrashed() */ class Album extends Model implements Searchable, Commentable, Favouritable { diff --git a/app/Models/AlexaSession.php b/app/Models/AlexaSession.php index 0024922b..521e7ef8 100644 --- a/app/Models/AlexaSession.php +++ b/app/Models/AlexaSession.php @@ -1,20 +1,20 @@ . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\Announcement + * App\Models\Announcement * * @property integer $id * @property string $title @@ -35,16 +35,16 @@ use Illuminate\Database\Eloquent\Model; * @property string $template_file * @property string $start_time * @property string $end_time - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereTextContent($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereAnnouncementTypeId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereLinks($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereTracks($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereCssClass($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereTemplateFile($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereStartTime($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Announcement whereEndTime($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereTextContent($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereAnnouncementTypeId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereLinks($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereTracks($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereCssClass($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereTemplateFile($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereStartTime($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Announcement whereEndTime($value) * @mixin \Eloquent */ class Announcement extends Model { diff --git a/app/Models/Comment.php b/app/Models/Comment.php index cbfc65fb..1d842482 100644 --- a/app/Models/Comment.php +++ b/app/Models/Comment.php @@ -18,16 +18,16 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use DB; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\MorphMany; use Illuminate\Database\Eloquent\SoftDeletes; -use Poniverse\Ponyfm\Contracts\Commentable; +use App\Contracts\Commentable; /** - * Poniverse\Ponyfm\Models\Comment + * App\Models\Comment * * @property integer $id * @property integer $user_id @@ -40,31 +40,31 @@ use Poniverse\Ponyfm\Contracts\Commentable; * @property integer $track_id * @property integer $album_id * @property integer $playlist_id - * @property-read \Poniverse\Ponyfm\Models\User $user - * @property-read \Poniverse\Ponyfm\Models\Track $track - * @property-read \Poniverse\Ponyfm\Models\Album $album - * @property-read \Poniverse\Ponyfm\Models\Playlist $playlist - * @property-read \Poniverse\Ponyfm\Models\User $profile + * @property-read \App\Models\User $user + * @property-read \App\Models\Track $track + * @property-read \App\Models\Album $album + * @property-read \App\Models\Playlist $playlist + * @property-read \App\Models\User $profile * @property-read Commentable $resource - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $activities + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $activities * @property-read mixed $url - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereIpAddress($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereContent($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereDeletedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereProfileId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereTrackId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment whereAlbumId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereIpAddress($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereContent($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereDeletedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereProfileId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereTrackId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment whereAlbumId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment wherePlaylistId($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Comment withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Comment withoutTrashed() */ class Comment extends Model { diff --git a/app/Models/Email.php b/app/Models/Email.php index 433703d9..2814de45 100644 --- a/app/Models/Email.php +++ b/app/Models/Email.php @@ -18,25 +18,25 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Alsofronie\Uuid\UuidModelTrait; use Illuminate\Database\Eloquent\Model; -use Poniverse\Ponyfm\Models\Notification; +use App\Models\Notification; /** - * Poniverse\Ponyfm\Models\Email + * App\Models\Email * * @property string $id * @property integer $notification_id * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at - * @property-read \Poniverse\Ponyfm\Models\Notification $notification - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\EmailClick[] $emailClicks - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Email whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Email whereNotificationId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Email whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Email whereUpdatedAt($value) + * @property-read \App\Models\Notification $notification + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\EmailClick[] $emailClicks + * @method static \Illuminate\Database\Query\Builder|\App\Models\Email whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Email whereNotificationId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Email whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Email whereUpdatedAt($value) * @mixin \Eloquent */ class Email extends Model diff --git a/app/Models/EmailClick.php b/app/Models/EmailClick.php index da58b7cf..6d0b442e 100644 --- a/app/Models/EmailClick.php +++ b/app/Models/EmailClick.php @@ -18,25 +18,25 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Alsofronie\Uuid\UuidModelTrait; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\EmailClick + * App\Models\EmailClick * * @property string $id * @property string $email_id * @property string $ip_address * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at - * @property-read \Poniverse\Ponyfm\Models\Email $email - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailClick whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailClick whereEmailId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailClick whereIpAddress($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailClick whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailClick whereUpdatedAt($value) + * @property-read \App\Models\Email $email + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailClick whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailClick whereEmailId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailClick whereIpAddress($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailClick whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailClick whereUpdatedAt($value) * @mixin \Eloquent */ class EmailClick extends Model diff --git a/app/Models/EmailSubscription.php b/app/Models/EmailSubscription.php index 2f594837..4d013383 100644 --- a/app/Models/EmailSubscription.php +++ b/app/Models/EmailSubscription.php @@ -18,15 +18,15 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Alsofronie\Uuid\UuidModelTrait; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; /** - * Poniverse\Ponyfm\EmailSubscription + * App\EmailSubscription * * @property string $id * @property integer $user_id @@ -34,19 +34,19 @@ use Poniverse\Ponyfm\Models\User; * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @property string $deleted_at - * @property-read \Poniverse\Ponyfm\Models\User $user - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereActivityType($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription whereDeletedAt($value) + * @property-read \App\Models\User $user + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereActivityType($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription whereDeletedAt($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\EmailSubscription withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\EmailSubscription withoutTrashed() */ class EmailSubscription extends Model { diff --git a/app/Models/Favourite.php b/app/Models/Favourite.php index 2b9cc302..0c2500e1 100644 --- a/app/Models/Favourite.php +++ b/app/Models/Favourite.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\Favourite + * App\Models\Favourite * * @property integer $id * @property integer $user_id @@ -31,18 +31,18 @@ use Illuminate\Database\Eloquent\Model; * @property integer $album_id * @property integer $playlist_id * @property string $created_at - * @property-read \Poniverse\Ponyfm\Models\User $user - * @property-read \Poniverse\Ponyfm\Models\Track $track - * @property-read \Poniverse\Ponyfm\Models\Album $album - * @property-read \Poniverse\Ponyfm\Models\Playlist $playlist + * @property-read \App\Models\User $user + * @property-read \App\Models\Track $track + * @property-read \App\Models\Album $album + * @property-read \App\Models\Playlist $playlist * @property-read mixed $resource * @property-read mixed $type - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereTrackId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereAlbumId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite wherePlaylistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Favourite whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereTrackId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereAlbumId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Favourite whereCreatedAt($value) * @mixin \Eloquent */ class Favourite extends Model diff --git a/app/Models/Follower.php b/app/Models/Follower.php index 89cb0d69..a0a07238 100644 --- a/app/Models/Follower.php +++ b/app/Models/Follower.php @@ -18,26 +18,26 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\BelongsTo; /** - * Poniverse\Ponyfm\Models\Follower + * App\Models\Follower * * @property integer $id * @property integer $user_id * @property integer $artist_id * @property integer $playlist_id * @property string $created_at - * @property-read \Poniverse\Ponyfm\Models\User $follower - * @property-read \Poniverse\Ponyfm\Models\User $artist - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Follower whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Follower whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Follower whereArtistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Follower wherePlaylistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Follower whereCreatedAt($value) + * @property-read \App\Models\User $follower + * @property-read \App\Models\User $artist + * @method static \Illuminate\Database\Query\Builder|\App\Models\Follower whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Follower whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Follower whereArtistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Follower wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Follower whereCreatedAt($value) * @mixin \Eloquent */ class Follower extends Model diff --git a/app/Models/Genre.php b/app/Models/Genre.php index ae88fbf6..d652c46d 100644 --- a/app/Models/Genre.php +++ b/app/Models/Genre.php @@ -18,42 +18,42 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use DB; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Database\Eloquent\SoftDeletes; -use Poniverse\Ponyfm\Traits\SlugTrait; +use App\Traits\SlugTrait; use Illuminate\Database\Eloquent\Model; use Venturecraft\Revisionable\RevisionableTrait; /** - * Poniverse\Ponyfm\Models\Genre + * App\Models\Genre * * @property integer $id * @property string $name * @property string $slug * @property string $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $tracks - * @property-read \Poniverse\Ponyfm\Models\Track $trackCountRelation + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks + * @property-read \App\Models\Track $trackCountRelation * @property-read mixed $track_count * @property-read mixed $url * @property-write mixed $title * @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereName($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereSlug($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereDeletedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereName($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereSlug($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereDeletedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre whereUpdatedAt($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Genre withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Genre withoutTrashed() */ class Genre extends Model { diff --git a/app/Models/Image.php b/app/Models/Image.php index 76f00402..a9cf158a 100644 --- a/app/Models/Image.php +++ b/app/Models/Image.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use External; use Illuminate\Database\Eloquent\Model; @@ -30,7 +30,7 @@ use Symfony\Component\HttpFoundation\File\File; use Symfony\Component\HttpFoundation\File\UploadedFile; /** - * Poniverse\Ponyfm\Models\Image + * App\Models\Image * * @property integer $id * @property string $filename @@ -41,15 +41,15 @@ use Symfony\Component\HttpFoundation\File\UploadedFile; * @property integer $uploaded_by * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereFilename($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereMime($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereExtension($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereSize($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereHash($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereUploadedBy($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Image whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereFilename($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereMime($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereExtension($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereSize($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereHash($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereUploadedBy($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Image whereUpdatedAt($value) * @mixin \Eloquent */ class Image extends Model diff --git a/app/Models/License.php b/app/Models/License.php index 5162df6e..8a213f9a 100644 --- a/app/Models/License.php +++ b/app/Models/License.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\License + * App\Models\License * * @property integer $id * @property string $title @@ -31,12 +31,12 @@ use Illuminate\Database\Eloquent\Model; * @property boolean $affiliate_distribution * @property boolean $open_distribution * @property boolean $remix - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereDescription($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereAffiliateDistribution($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereOpenDistribution($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\License whereRemix($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereDescription($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereAffiliateDistribution($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereOpenDistribution($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\License whereRemix($value) * @mixin \Eloquent */ class License extends Model diff --git a/app/Models/Notification.php b/app/Models/Notification.php index 952349cc..f514203d 100644 --- a/app/Models/Notification.php +++ b/app/Models/Notification.php @@ -18,26 +18,26 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Builder; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\Notification + * App\Models\Notification * * @property integer $id * @property integer $activity_id * @property integer $user_id * @property boolean $is_read - * @property-read \Poniverse\Ponyfm\Models\Activity $activity - * @property-read \Poniverse\Ponyfm\Models\Email $email - * @property-read \Poniverse\Ponyfm\Models\User $recipient - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Notification forUser($user) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Notification whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Notification whereActivityId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Notification whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Notification whereIsRead($value) + * @property-read \App\Models\Activity $activity + * @property-read \App\Models\Email $email + * @property-read \App\Models\User $recipient + * @method static \Illuminate\Database\Query\Builder|\App\Models\Notification forUser($user) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Notification whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Notification whereActivityId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Notification whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Notification whereIsRead($value) * @mixin \Eloquent */ class Notification extends Model diff --git a/app/Models/PinnedPlaylist.php b/app/Models/PinnedPlaylist.php index 89875516..1e5d8ea5 100644 --- a/app/Models/PinnedPlaylist.php +++ b/app/Models/PinnedPlaylist.php @@ -18,25 +18,25 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\PinnedPlaylist + * App\Models\PinnedPlaylist * * @property integer $id * @property integer $user_id * @property integer $playlist_id * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at - * @property-read \Poniverse\Ponyfm\Models\User $user - * @property-read \Poniverse\Ponyfm\Models\Playlist $playlist - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\PinnedPlaylist whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\PinnedPlaylist whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\PinnedPlaylist wherePlaylistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\PinnedPlaylist whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\PinnedPlaylist whereUpdatedAt($value) + * @property-read \App\Models\User $user + * @property-read \App\Models\Playlist $playlist + * @method static \Illuminate\Database\Query\Builder|\App\Models\PinnedPlaylist whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\PinnedPlaylist whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\PinnedPlaylist wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\PinnedPlaylist whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\PinnedPlaylist whereUpdatedAt($value) * @mixin \Eloquent */ class PinnedPlaylist extends Model diff --git a/app/Models/Playlist.php b/app/Models/Playlist.php index 805ea0b5..bf2cb48c 100644 --- a/app/Models/Playlist.php +++ b/app/Models/Playlist.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use DB; use Helpers; @@ -29,17 +29,17 @@ use Illuminate\Database\Eloquent\SoftDeletes; use Illuminate\Foundation\Bus\DispatchesJobs; use Auth; use Cache; -use Poniverse\Ponyfm\Contracts\Commentable; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Exceptions\TrackFileNotFoundException; -use Poniverse\Ponyfm\Traits\IndexedInElasticsearchTrait; -use Poniverse\Ponyfm\Traits\TrackCollection; -use Poniverse\Ponyfm\Traits\SlugTrait; +use App\Contracts\Commentable; +use App\Contracts\Favouritable; +use App\Contracts\Searchable; +use App\Exceptions\TrackFileNotFoundException; +use App\Traits\IndexedInElasticsearchTrait; +use App\Traits\TrackCollection; +use App\Traits\SlugTrait; use Venturecraft\Revisionable\RevisionableTrait; /** - * Poniverse\Ponyfm\Models\Playlist + * App\Models\Playlist * * @property integer $id * @property integer $user_id @@ -56,37 +56,37 @@ use Venturecraft\Revisionable\RevisionableTrait; * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @property \Carbon\Carbon $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $tracks - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\ResourceUser[] $users - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Comment[] $comments - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\PinnedPlaylist[] $pins - * @property-read \Poniverse\Ponyfm\Models\User $user + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ResourceUser[] $users + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Comment[] $comments + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\PinnedPlaylist[] $pins + * @property-read \App\Models\User $user * @property-read mixed $url * @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist userDetails() - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Favourite[] $favourites - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $activities - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereSlug($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereDescription($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereIsPublic($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereTrackCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereViewCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereDownloadCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereFavouriteCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereFollowCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereCommentCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist whereDeletedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist userDetails() + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Favourite[] $favourites + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $activities + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereSlug($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereDescription($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereIsPublic($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereTrackCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereViewCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereDownloadCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereFavouriteCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereFollowCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereCommentCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist whereDeletedAt($value) * @mixin \Eloquent * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Playlist withoutTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Playlist withoutTrashed() */ class Playlist extends Model implements Searchable, Commentable, Favouritable { diff --git a/app/Models/ResourceLogItem.php b/app/Models/ResourceLogItem.php index e48a98b3..b4ab9793 100644 --- a/app/Models/ResourceLogItem.php +++ b/app/Models/ResourceLogItem.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; use Carbon\Carbon; @@ -27,7 +27,7 @@ use DB; use Request; /** - * Poniverse\Ponyfm\Models\ResourceLogItem + * App\Models\ResourceLogItem * * @property integer $id * @property integer $user_id @@ -38,15 +38,15 @@ use Request; * @property integer $album_id * @property integer $playlist_id * @property \Carbon\Carbon $created_at - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereLogType($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereIpAddress($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereTrackFormatId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereTrackId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereAlbumId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem wherePlaylistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceLogItem whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereLogType($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereIpAddress($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereTrackFormatId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereTrackId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereAlbumId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceLogItem whereCreatedAt($value) * @mixin \Eloquent */ class ResourceLogItem extends Model diff --git a/app/Models/ResourceUser.php b/app/Models/ResourceUser.php index 926bcd68..35969a90 100644 --- a/app/Models/ResourceUser.php +++ b/app/Models/ResourceUser.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\ResourceUser + * App\Models\ResourceUser * * @property integer $id * @property integer $user_id @@ -37,18 +37,18 @@ use Illuminate\Database\Eloquent\Model; * @property integer $view_count * @property integer $play_count * @property integer $download_count - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereTrackId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereAlbumId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser wherePlaylistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereArtistId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereIsFollowed($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereIsFavourited($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereIsPinned($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereViewCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser wherePlayCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ResourceUser whereDownloadCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereTrackId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereAlbumId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser wherePlaylistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereArtistId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereIsFollowed($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereIsFavourited($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereIsPinned($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereViewCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser wherePlayCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ResourceUser whereDownloadCount($value) * @mixin \Eloquent */ class ResourceUser extends Model diff --git a/app/Models/Role.php b/app/Models/Role.php index a641780e..be53de49 100644 --- a/app/Models/Role.php +++ b/app/Models/Role.php @@ -18,18 +18,18 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\Role + * App\Models\Role * * @property integer $id * @property string $name - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\User[] $users - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Role whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Role whereName($value) + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\User[] $users + * @method static \Illuminate\Database\Query\Builder|\App\Models\Role whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Role whereName($value) * @mixin \Eloquent */ class Role extends Model diff --git a/app/Models/ShowSong.php b/app/Models/ShowSong.php index b686231f..f6389412 100644 --- a/app/Models/ShowSong.php +++ b/app/Models/ShowSong.php @@ -18,13 +18,13 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use DB; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\ShowSong + * App\Models\ShowSong * * @property integer $id * @property string $title @@ -33,15 +33,15 @@ use Illuminate\Database\Eloquent\Model; * @property \Carbon\Carbon $created_at * @property \Carbon\Carbon $updated_at * @property string $deleted_at - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $trackCountRelation - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $tracks - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereLyrics($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereSlug($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\ShowSong whereDeletedAt($value) + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $trackCountRelation + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereLyrics($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereSlug($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\ShowSong whereDeletedAt($value) * @mixin \Eloquent */ class ShowSong extends Model diff --git a/app/Models/Subscription.php b/app/Models/Subscription.php index b0032067..0c623366 100644 --- a/app/Models/Subscription.php +++ b/app/Models/Subscription.php @@ -18,28 +18,28 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\Subscription + * App\Models\Subscription * * @property integer $id * @property integer $user_id * @property string $endpoint * @property string $p256dh * @property string $auth - * @property-read \Poniverse\Ponyfm\Models\User $user + * @property-read \App\Models\User $user * @property string $created_at * @property string $updated_at - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereUserId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereEndpoint($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereP256dh($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereAuth($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Subscription whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereUserId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereEndpoint($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereP256dh($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereAuth($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Subscription whereUpdatedAt($value) * @mixin \Eloquent */ class Subscription extends Model diff --git a/app/Models/Track.php b/app/Models/Track.php index 6764072d..285e71b7 100644 --- a/app/Models/Track.php +++ b/app/Models/Track.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Auth; use Cache; @@ -27,13 +27,13 @@ use DB; use Gate; use Illuminate\Database\Eloquent\Relations\HasMany; use Illuminate\Database\Eloquent\Relations\MorphMany; -use Poniverse\Ponyfm\Contracts\Commentable; -use Poniverse\Ponyfm\Contracts\Favouritable; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Exceptions\TrackFileNotFoundException; -use Poniverse\Ponyfm\Models\ResourceLogItem; -use Poniverse\Ponyfm\Traits\IndexedInElasticsearchTrait; -use Poniverse\Ponyfm\Traits\SlugTrait; +use App\Contracts\Commentable; +use App\Contracts\Favouritable; +use App\Contracts\Searchable; +use App\Exceptions\TrackFileNotFoundException; +use App\Models\ResourceLogItem; +use App\Traits\IndexedInElasticsearchTrait; +use App\Traits\SlugTrait; use Exception; use External; use getid3_writetags; @@ -45,7 +45,7 @@ use Log; use Venturecraft\Revisionable\RevisionableTrait; /** - * Poniverse\Ponyfm\Models\Track + * App\Models\Track * * @property integer $id * @property integer $user_id @@ -79,71 +79,71 @@ use Venturecraft\Revisionable\RevisionableTrait; * @property string $source * @property string $original_tags * @property string $metadata - * @property-read \Poniverse\Ponyfm\Models\Genre $genre - * @property-read \Poniverse\Ponyfm\Models\TrackType $trackType - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Comment[] $comments - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Favourite[] $favourites - * @property-read \Poniverse\Ponyfm\Models\Image $cover - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\ShowSong[] $showSongs - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\ResourceUser[] $users - * @property-read \Poniverse\Ponyfm\Models\User $user - * @property-read \Poniverse\Ponyfm\Models\Album $album - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\TrackFile[] $trackFiles + * @property-read \App\Models\Genre $genre + * @property-read \App\Models\TrackType $trackType + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Comment[] $comments + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Favourite[] $favourites + * @property-read \App\Models\Image $cover + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ShowSong[] $showSongs + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ResourceUser[] $users + * @property-read \App\Models\User $user + * @property-read \App\Models\Album $album + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\TrackFile[] $trackFiles * @property-read mixed $year * @property-read mixed $url * @property-read mixed $download_directory * @property-read mixed $status * @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track userDetails() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track published() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track listed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track explicitFilter() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track withComments() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track mlpma() - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $notifications - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $activities + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track userDetails() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track published() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track listed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track explicitFilter() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track withComments() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track mlpma() + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $notifications + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $activities * @property int $current_version * @property int|null $version_upload_status - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\TrackFile[] $trackFilesForAllVersions + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\TrackFile[] $trackFilesForAllVersions * @method static bool|null forceDelete() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track onlyTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track onlyTrashed() * @method static bool|null restore() - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereAlbumId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereCommentCount($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereCoverId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereCreatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereCurrentVersion($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereDeletedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereDescription($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereDownloadCount($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereDuration($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereFavouriteCount($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereGenreId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereHash($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereIsDownloadable($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereIsExplicit($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereIsLatest($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereIsListed($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereIsVocal($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereLicenseId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereLyrics($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereMetadata($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereOriginalTags($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track wherePlayCount($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track wherePublishedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereReleasedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereSlug($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereSource($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereTitle($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereTrackNumber($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereTrackTypeId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereUpdatedAt($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereUserId($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereVersionUploadStatus($value) - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\Track whereViewCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track withTrashed() - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\Track withoutTrashed() + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereAlbumId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereCommentCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereCoverId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereCreatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereCurrentVersion($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereDeletedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereDescription($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereDownloadCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereDuration($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereFavouriteCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereGenreId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereHash($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereIsDownloadable($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereIsExplicit($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereIsLatest($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereIsListed($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereIsVocal($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereLicenseId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereLyrics($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereMetadata($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereOriginalTags($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track wherePlayCount($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track wherePublishedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereReleasedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereSlug($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereSource($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereTitle($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereTrackNumber($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereTrackTypeId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereUpdatedAt($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereUserId($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereVersionUploadStatus($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\Track whereViewCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track withTrashed() + * @method static \Illuminate\Database\Query\Builder|\App\Models\Track withoutTrashed() * @mixin \Eloquent */ class Track extends Model implements Searchable, Commentable, Favouritable diff --git a/app/Models/TrackFile.php b/app/Models/TrackFile.php index adae49bd..ecddb6e8 100644 --- a/app/Models/TrackFile.php +++ b/app/Models/TrackFile.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Config; use Helpers; @@ -27,7 +27,7 @@ use App; use File; /** - * Poniverse\Ponyfm\Models\TrackFile + * App\Models\TrackFile * * @property integer $id * @property integer $track_id @@ -39,23 +39,23 @@ use File; * @property boolean $status * @property \Carbon\Carbon $expires_at * @property integer $filesize - * @property-read \Poniverse\Ponyfm\Models\Track $track + * @property-read \App\Models\Track $track * @property-read mixed $extension * @property-read mixed $url * @property-read mixed $size * @property-read mixed $is_expired * @property integer $version - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereTrackId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereIsMaster($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereFormat($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereIsCacheable($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereStatus($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereExpiresAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereFilesize($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackFile whereVersion($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereTrackId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereIsMaster($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereFormat($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereIsCacheable($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereStatus($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereExpiresAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereFilesize($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackFile whereVersion($value) * @mixin \Eloquent */ class TrackFile extends Model diff --git a/app/Models/TrackType.php b/app/Models/TrackType.php index 75e78f9f..d0cd53e5 100644 --- a/app/Models/TrackType.php +++ b/app/Models/TrackType.php @@ -18,19 +18,19 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Illuminate\Database\Eloquent\Model; /** - * Poniverse\Ponyfm\Models\TrackType + * App\Models\TrackType * * @property integer $id * @property string $title * @property string $editor_title - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackType whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackType whereTitle($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\TrackType whereEditorTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackType whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackType whereTitle($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\TrackType whereEditorTitle($value) * @mixin \Eloquent */ class TrackType extends Model diff --git a/app/Models/User.php b/app/Models/User.php index 51927e6e..bbc4310b 100644 --- a/app/Models/User.php +++ b/app/Models/User.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Models; +namespace App\Models; use Carbon\Carbon; use DB; @@ -34,14 +34,14 @@ use Illuminate\Foundation\Auth\Access\Authorizable; use Auth; use Illuminate\Support\Str; use League\OAuth2\Client\Token\AccessToken; -use Poniverse\Ponyfm\Contracts\Commentable; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Traits\IndexedInElasticsearchTrait; +use App\Contracts\Commentable; +use App\Contracts\Searchable; +use App\Traits\IndexedInElasticsearchTrait; use Validator; use Venturecraft\Revisionable\RevisionableTrait; /** - * Poniverse\Ponyfm\Models\User + * App\Models\User * * @property integer $id * @property string $display_name @@ -61,46 +61,46 @@ use Venturecraft\Revisionable\RevisionableTrait; * @property string $remember_token * @property boolean $is_archived * @property \Carbon\Carbon $disabled_at - * @property-read \Poniverse\Ponyfm\Models\Image $avatar - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\ResourceUser[] $users - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Role[] $roles - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Comment[] $comments - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Track[] $tracks + * @property-read \App\Models\Image $avatar + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\ResourceUser[] $users + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Role[] $roles + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Comment[] $comments + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Track[] $tracks * @property-read mixed $url * @property-read mixed $message_url * @property-read \Illuminate\Database\Eloquent\Collection|\Venturecraft\Revisionable\Revision[] $revisionHistory - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User userDetails() - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Notification[] $notifications - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\User[] $followers + * @method static \Illuminate\Database\Query\Builder|\App\Models\User userDetails() + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Notification[] $notifications + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\User[] $followers * @property-read mixed $user - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $activities - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Activity[] $notificationActivities - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\Email[] $emails - * @property-read \Illuminate\Database\Eloquent\Collection|\Poniverse\Ponyfm\Models\EmailSubscription[] $emailSubscriptions - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereDisplayName($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereUsername($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereSyncNames($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereEmail($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereGravatar($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereSlug($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereUsesGravatar($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereCanSeeExplicitContent($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereBio($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereTrackCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereCommentCount($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereCreatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereUpdatedAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereAvatarId($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereRememberToken($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereIsArchived($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereDisabledAt($value) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User withEmailSubscriptionFor($activityType) + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $activities + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Activity[] $notificationActivities + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\Email[] $emails + * @property-read \Illuminate\Database\Eloquent\Collection|\App\Models\EmailSubscription[] $emailSubscriptions + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereDisplayName($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereUsername($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereSyncNames($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereEmail($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereGravatar($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereSlug($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereUsesGravatar($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereCanSeeExplicitContent($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereBio($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereTrackCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereCommentCount($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereCreatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereUpdatedAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereAvatarId($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereRememberToken($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereIsArchived($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereDisabledAt($value) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User withEmailSubscriptionFor($activityType) * @mixin \Eloquent - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User wherePoniverseId($poniverseId) - * @method static \Illuminate\Database\Query\Builder|\Poniverse\Ponyfm\Models\User whereLinkedToPoniverse() + * @method static \Illuminate\Database\Query\Builder|\App\Models\User wherePoniverseId($poniverseId) + * @method static \Illuminate\Database\Query\Builder|\App\Models\User whereLinkedToPoniverse() * @property int $redirect_to - * @method static \Illuminate\Database\Eloquent\Builder|\Poniverse\Ponyfm\Models\User whereRedirectTo($value) + * @method static \Illuminate\Database\Eloquent\Builder|\App\Models\User whereRedirectTo($value) */ class User extends Model implements AuthenticatableContract, CanResetPasswordContract, \Illuminate\Contracts\Auth\Access\Authorizable, Searchable, Commentable { diff --git a/app/PlaylistDownloader.php b/app/PlaylistDownloader.php index 6716a467..ae1e11f5 100644 --- a/app/PlaylistDownloader.php +++ b/app/PlaylistDownloader.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm; +namespace App; -use Poniverse\Ponyfm\Models\Playlist; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Playlist; +use App\Models\Track; +use App\Models\User; use ZipStream; class PlaylistDownloader diff --git a/app/Policies/AlbumPolicy.php b/app/Policies/AlbumPolicy.php index 3b8d545e..2f43a8da 100644 --- a/app/Policies/AlbumPolicy.php +++ b/app/Policies/AlbumPolicy.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Policies; +namespace App\Policies; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\User; +use App\Models\Album; +use App\Models\User; class AlbumPolicy { diff --git a/app/Policies/GenrePolicy.php b/app/Policies/GenrePolicy.php index 65b1c8d5..06cc0756 100644 --- a/app/Policies/GenrePolicy.php +++ b/app/Policies/GenrePolicy.php @@ -18,10 +18,10 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Policies; +namespace App\Policies; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Models\User; +use App\Models\Genre; +use App\Models\User; class GenrePolicy { diff --git a/app/Policies/ShowSongPolicy.php b/app/Policies/ShowSongPolicy.php index 7414dcf1..5d14bcff 100644 --- a/app/Policies/ShowSongPolicy.php +++ b/app/Policies/ShowSongPolicy.php @@ -1,9 +1,9 @@ . */ -namespace Poniverse\Ponyfm\Policies; +namespace App\Policies; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; +use App\Models\Track; +use App\Models\User; class TrackPolicy { diff --git a/app/Policies/UserPolicy.php b/app/Policies/UserPolicy.php index 2f6a35f8..3d9e1ba8 100644 --- a/app/Policies/UserPolicy.php +++ b/app/Policies/UserPolicy.php @@ -18,9 +18,9 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Policies; +namespace App\Policies; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; class UserPolicy { diff --git a/app/Providers/AppServiceProvider.php b/app/Providers/AppServiceProvider.php index 7940fdf4..8c96ebd6 100644 --- a/app/Providers/AppServiceProvider.php +++ b/app/Providers/AppServiceProvider.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Providers; +namespace App\Providers; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Foundation\Application; @@ -52,8 +52,8 @@ class AppServiceProvider extends ServiceProvider return new Poniverse($app['config']->get('poniverse.client_id'), $app['config']->get('poniverse.secret')); }); - $this->app->bind(Poniverse\Ponyfm\Library\Search::class, function (Application $app) { - return new Poniverse\Ponyfm\Library\Search( + $this->app->bind(App\Library\Search::class, function (Application $app) { + return new App\Library\Search( \Elasticsearch::connection(), $app['config']->get('ponyfm.elasticsearch_index') ); @@ -63,11 +63,11 @@ class AppServiceProvider extends ServiceProvider // any weirdness with merging array indices. $merge = false is // set below so that no morphMap array merging happens! Relation::morphMap([ - Poniverse\Ponyfm\Models\Activity::TARGET_TRACK => Poniverse\Ponyfm\Models\Track::class, - Poniverse\Ponyfm\Models\Activity::TARGET_ALBUM => Poniverse\Ponyfm\Models\Album::class, - Poniverse\Ponyfm\Models\Activity::TARGET_PLAYLIST => Poniverse\Ponyfm\Models\Playlist::class, - Poniverse\Ponyfm\Models\Activity::TARGET_USER => Poniverse\Ponyfm\Models\User::class, - Poniverse\Ponyfm\Models\Activity::TARGET_COMMENT => Poniverse\Ponyfm\Models\Comment::class, + App\Models\Activity::TARGET_TRACK => App\Models\Track::class, + App\Models\Activity::TARGET_ALBUM => App\Models\Album::class, + App\Models\Activity::TARGET_PLAYLIST => App\Models\Playlist::class, + App\Models\Activity::TARGET_USER => App\Models\User::class, + App\Models\Activity::TARGET_COMMENT => App\Models\Comment::class, ], false); } } diff --git a/app/Providers/AuthServiceProvider.php b/app/Providers/AuthServiceProvider.php index 537dc51f..2ce3378c 100644 --- a/app/Providers/AuthServiceProvider.php +++ b/app/Providers/AuthServiceProvider.php @@ -18,21 +18,21 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Providers; +namespace App\Providers; use Gate; use Illuminate\Contracts\Auth\Access\Gate as GateContract; use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider; -use Poniverse\Ponyfm\Models\Album; -use Poniverse\Ponyfm\Models\Genre; -use Poniverse\Ponyfm\Policies\AlbumPolicy; -use Poniverse\Ponyfm\Policies\GenrePolicy; -use Poniverse\Ponyfm\Policies\ShowSongPolicy; -use Poniverse\Ponyfm\Policies\TrackPolicy; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\User; -use Poniverse\Ponyfm\Models\ShowSong; -use Poniverse\Ponyfm\Policies\UserPolicy; +use App\Models\Album; +use App\Models\Genre; +use App\Policies\AlbumPolicy; +use App\Policies\GenrePolicy; +use App\Policies\ShowSongPolicy; +use App\Policies\TrackPolicy; +use App\Models\Track; +use App\Models\User; +use App\Models\ShowSong; +use App\Policies\UserPolicy; class AuthServiceProvider extends ServiceProvider { diff --git a/app/Providers/BroadcastServiceProvider.php b/app/Providers/BroadcastServiceProvider.php index 5f45fa98..ee67f771 100755 --- a/app/Providers/BroadcastServiceProvider.php +++ b/app/Providers/BroadcastServiceProvider.php @@ -1,6 +1,6 @@ . */ -namespace Poniverse\Ponyfm\Providers; +namespace App\Providers; use Illuminate\Foundation\Support\Providers\EventServiceProvider as ServiceProvider; @@ -30,8 +30,8 @@ class EventServiceProvider extends ServiceProvider * @var array */ protected $listen = [ - 'Poniverse\Ponyfm\Events\Event' => [ - 'Poniverse\Ponyfm\Listeners\EventListener', + 'App\Events\Event' => [ + 'App\Listeners\EventListener', ], ]; diff --git a/app/Providers/NotificationServiceProvider.php b/app/Providers/NotificationServiceProvider.php index 442cb5e1..c1f03f9b 100644 --- a/app/Providers/NotificationServiceProvider.php +++ b/app/Providers/NotificationServiceProvider.php @@ -18,11 +18,11 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Providers; +namespace App\Providers; use Illuminate\Foundation\Application; use Illuminate\Support\ServiceProvider; -use Poniverse\Ponyfm\Library\Notifications\NotificationManager; +use App\Library\Notifications\NotificationManager; class NotificationServiceProvider extends ServiceProvider { diff --git a/app/Providers/RouteServiceProvider.php b/app/Providers/RouteServiceProvider.php index 2afed0ed..0954a2cd 100644 --- a/app/Providers/RouteServiceProvider.php +++ b/app/Providers/RouteServiceProvider.php @@ -18,12 +18,12 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Providers; +namespace App\Providers; use Illuminate\Routing\Router; use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider; use Illuminate\Support\Facades\Route; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; class RouteServiceProvider extends ServiceProvider { @@ -34,7 +34,7 @@ class RouteServiceProvider extends ServiceProvider * * @var string */ - protected $namespace = 'Poniverse\Ponyfm\Http\Controllers'; + protected $namespace = 'App\Http\Controllers'; /** * Define your route model bindings, pattern filters, etc. diff --git a/app/Traits/IndexedInElasticsearchTrait.php b/app/Traits/IndexedInElasticsearchTrait.php index 225cded2..b5ceb833 100644 --- a/app/Traits/IndexedInElasticsearchTrait.php +++ b/app/Traits/IndexedInElasticsearchTrait.php @@ -18,14 +18,14 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Traits; +namespace App\Traits; use Config; use Elasticsearch; use Elasticsearch\Common\Exceptions\Missing404Exception; use Illuminate\Foundation\Bus\DispatchesJobs; -use Poniverse\Ponyfm\Contracts\Searchable; -use Poniverse\Ponyfm\Jobs\UpdateSearchIndexForEntity; +use App\Contracts\Searchable; +use App\Jobs\UpdateSearchIndexForEntity; /** * Class IndexedInElasticsearch @@ -33,7 +33,7 @@ use Poniverse\Ponyfm\Jobs\UpdateSearchIndexForEntity; * Classes using this trait must declare the `$elasticsearchType` property and * implement the `Searchable` interface. * - * @package Poniverse\Ponyfm\Traits + * @package App\Traits */ trait IndexedInElasticsearchTrait { diff --git a/app/Traits/SlugTrait.php b/app/Traits/SlugTrait.php index 723a62fe..4682ffa9 100644 --- a/app/Traits/SlugTrait.php +++ b/app/Traits/SlugTrait.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Traits; +namespace App\Traits; use Illuminate\Support\Str; diff --git a/app/Traits/TrackCollection.php b/app/Traits/TrackCollection.php index 83072370..7dcad760 100644 --- a/app/Traits/TrackCollection.php +++ b/app/Traits/TrackCollection.php @@ -19,20 +19,20 @@ * along with this program. If not, see . */ -namespace Poniverse\Ponyfm\Traits; +namespace App\Traits; use File; use Illuminate\Database\Eloquent\Collection; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Relations\Relation; use Illuminate\Support\Facades\Cache; -use Poniverse\Ponyfm\Jobs\EncodeTrackFile; -use Poniverse\Ponyfm\Models\Track; -use Poniverse\Ponyfm\Models\TrackFile; +use App\Jobs\EncodeTrackFile; +use App\Models\Track; +use App\Models\TrackFile; /** * Class TrackCollection - * @package Poniverse\Ponyfm\Traits + * @package App\Traits * * Contains common logic between albums and playlists. They share some functionality * because they're both a form of downloadable track collection. diff --git a/bootstrap/app.php b/bootstrap/app.php index 2bba94a5..27f334fb 100644 --- a/bootstrap/app.php +++ b/bootstrap/app.php @@ -46,17 +46,17 @@ $app = new Illuminate\Foundation\Application( $app->singleton( Illuminate\Contracts\Http\Kernel::class, - Poniverse\Ponyfm\Http\Kernel::class + App\Http\Kernel::class ); $app->singleton( Illuminate\Contracts\Console\Kernel::class, - Poniverse\Ponyfm\Console\Kernel::class + App\Console\Kernel::class ); $app->singleton( Illuminate\Contracts\Debug\ExceptionHandler::class, - Poniverse\Ponyfm\Exceptions\Handler::class + App\Exceptions\Handler::class ); /* diff --git a/composer.json b/composer.json index f3fc10c5..3fee004d 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,7 @@ "app/Library" ], "psr-4": { - "Poniverse\\Ponyfm\\": "app/" + "App\\": "app/" } }, "autoload-dev": { diff --git a/composer.lock b/composer.lock index a3f84935..6e03695b 100644 --- a/composer.lock +++ b/composer.lock @@ -1,7 +1,7 @@ { "_readme": [ "This file locks the dependencies of your project to a known state", - "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", + "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies", "This file is @generated automatically" ], "content-hash": "e385d19195397827ae1940ef36951ab0", @@ -44,20 +44,24 @@ } ], "description": "A Laravel Eloquent Model trait for using UUID's as primary keys", + "support": { + "issues": "https://github.com/alsofronie/eloquent-uuid/issues", + "source": "https://github.com/alsofronie/eloquent-uuid" + }, "time": "2017-07-20T18:09:53+00:00" }, { "name": "barryvdh/laravel-cors", - "version": "v0.10.0", + "version": "v0.10.1", "source": { "type": "git", - "url": "https://github.com/barryvdh/laravel-cors.git", - "reference": "1326460c591e5299d43e266de52a4141c5c66561" + "url": "https://github.com/fruitcake/laravel-cors.git", + "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-cors/zipball/1326460c591e5299d43e266de52a4141c5c66561", - "reference": "1326460c591e5299d43e266de52a4141c5c66561", + "url": "https://api.github.com/repos/fruitcake/laravel-cors/zipball/b64caccbfc33b9ee2ba7dcce3307590882ede9ad", + "reference": "b64caccbfc33b9ee2ba7dcce3307590882ede9ad", "shasum": "" }, "require": { @@ -107,7 +111,11 @@ "crossdomain", "laravel" ], - "time": "2017-08-28T12:10:56+00:00" + "support": { + "issues": "https://github.com/fruitcake/laravel-cors/issues", + "source": "https://github.com/fruitcake/laravel-cors/tree/v0.10.1" + }, + "time": "2017-12-19T21:08:24+00:00" }, { "name": "barryvdh/laravel-debugbar", @@ -156,45 +164,50 @@ "profiler", "webprofiler" ], + "support": { + "issues": "https://github.com/barryvdh/laravel-debugbar/issues", + "source": "https://github.com/barryvdh/laravel-debugbar/tree/2.4" + }, "time": "2017-07-21T11:56:48+00:00" }, { "name": "barryvdh/laravel-ide-helper", - "version": "v2.4.1", + "version": "v2.8.0", "source": { "type": "git", "url": "https://github.com/barryvdh/laravel-ide-helper.git", - "reference": "2b1273c45e2f8df7a625563e2283a17c14f02ae8" + "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/2b1273c45e2f8df7a625563e2283a17c14f02ae8", - "reference": "2b1273c45e2f8df7a625563e2283a17c14f02ae8", + "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/ba95d18ef55c91295250ae8b7bfa73d8fb866b9b", + "reference": "ba95d18ef55c91295250ae8b7bfa73d8fb866b9b", "shasum": "" }, "require": { - "barryvdh/reflection-docblock": "^2.0.4", - "illuminate/console": "^5.0,<5.6", - "illuminate/filesystem": "^5.0,<5.6", - "illuminate/support": "^5.0,<5.6", - "php": ">=5.4.0", - "symfony/class-loader": "^2.3|^3.0" + "barryvdh/reflection-docblock": "^2.0.6", + "composer/composer": "^1.6 || ^2.0@dev", + "doctrine/dbal": "~2.3", + "illuminate/console": "^5.5 || ^6 || ^7", + "illuminate/filesystem": "^5.5 || ^6 || ^7", + "illuminate/support": "^5.5 || ^6 || ^7", + "php": ">=7.2", + "phpdocumentor/type-resolver": "^1.1.0" }, "require-dev": { - "doctrine/dbal": "~2.3", - "illuminate/config": "^5.0,<5.6", - "illuminate/view": "^5.0,<5.6", - "phpunit/phpunit": "4.*", - "scrutinizer/ocular": "~1.1", - "squizlabs/php_codesniffer": "~2.3" - }, - "suggest": { - "doctrine/dbal": "Load information from the database about models for phpdocs (~2.3)" + "illuminate/config": "^5.5 || ^6 || ^7", + "illuminate/view": "^5.5 || ^6 || ^7", + "mockery/mockery": "^1.3", + "orchestra/testbench": "^3.5 || ^4 || ^5", + "phpro/grumphp": "^0.19.0", + "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3", + "squizlabs/php_codesniffer": "^3.5", + "vimeo/psalm": "^3.12" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.3-dev" + "dev-master": "2.7-dev" }, "laravel": { "providers": [ @@ -229,20 +242,30 @@ "phpstorm", "sublime" ], - "time": "2017-07-16T00:24:12+00:00" + "support": { + "issues": "https://github.com/barryvdh/laravel-ide-helper/issues", + "source": "https://github.com/barryvdh/laravel-ide-helper/tree/v2.8.0" + }, + "funding": [ + { + "url": "https://github.com/barryvdh", + "type": "github" + } + ], + "time": "2020-08-10T08:22:48+00:00" }, { "name": "barryvdh/reflection-docblock", - "version": "v2.0.4", + "version": "v2.0.6", "source": { "type": "git", "url": "https://github.com/barryvdh/ReflectionDocBlock.git", - "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c" + "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/3dcbd98b5d9384a5357266efba8fd29884458e5c", - "reference": "3dcbd98b5d9384a5357266efba8fd29884458e5c", + "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16", + "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16", "shasum": "" }, "require": { @@ -278,20 +301,23 @@ "email": "mike.vanriel@naenius.com" } ], - "time": "2016-06-13T19:28:20+00:00" + "support": { + "source": "https://github.com/barryvdh/ReflectionDocBlock/tree/v2.0.6" + }, + "time": "2018-12-13T10:34:14+00:00" }, { "name": "beberlei/assert", - "version": "v2.8.1", + "version": "v2.9.9", "source": { "type": "git", "url": "https://github.com/beberlei/assert.git", - "reference": "fd8dc8f6de4645ccf4d1a0b38a6b8fdaf2e8b337" + "reference": "124317de301b7c91d5fce34c98bba2c6925bec95" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/beberlei/assert/zipball/fd8dc8f6de4645ccf4d1a0b38a6b8fdaf2e8b337", - "reference": "fd8dc8f6de4645ccf4d1a0b38a6b8fdaf2e8b337", + "url": "https://api.github.com/repos/beberlei/assert/zipball/124317de301b7c91d5fce34c98bba2c6925bec95", + "reference": "124317de301b7c91d5fce34c98bba2c6925bec95", "shasum": "" }, "require": { @@ -333,7 +359,11 @@ "assertion", "validation" ], - "time": "2017-11-30T13:25:15+00:00" + "support": { + "issues": "https://github.com/beberlei/assert/issues", + "source": "https://github.com/beberlei/assert/tree/v2.9.9" + }, + "time": "2019-05-28T15:27:37+00:00" }, { "name": "codescale/ffmpeg-php", @@ -377,8 +407,408 @@ "ffmpeg", "video" ], + "support": { + "issues": "https://github.com/CodeScaleInc/ffmpeg-php/issues", + "source": "https://github.com/CodeScaleInc/ffmpeg-php/tree/master" + }, "time": "2013-05-05T09:10:04+00:00" }, + { + "name": "composer/ca-bundle", + "version": "1.2.9", + "source": { + "type": "git", + "url": "https://github.com/composer/ca-bundle.git", + "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5", + "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5", + "shasum": "" + }, + "require": { + "ext-openssl": "*", + "ext-pcre": "*", + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.55", + "psr/log": "^1.0", + "symfony/phpunit-bridge": "^4.2 || ^5", + "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\CaBundle\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.", + "keywords": [ + "cabundle", + "cacert", + "certificate", + "ssl", + "tls" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/ca-bundle/issues", + "source": "https://github.com/composer/ca-bundle/tree/1.2.9" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-01-12T12:10:35+00:00" + }, + { + "name": "composer/composer", + "version": "2.0.9", + "source": { + "type": "git", + "url": "https://github.com/composer/composer.git", + "reference": "591c2c155cac0d2d7f34af41d3b1e29bcbfc685e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/composer/zipball/591c2c155cac0d2d7f34af41d3b1e29bcbfc685e", + "reference": "591c2c155cac0d2d7f34af41d3b1e29bcbfc685e", + "shasum": "" + }, + "require": { + "composer/ca-bundle": "^1.0", + "composer/semver": "^3.0", + "composer/spdx-licenses": "^1.2", + "composer/xdebug-handler": "^1.1", + "justinrainbow/json-schema": "^5.2.10", + "php": "^5.3.2 || ^7.0 || ^8.0", + "psr/log": "^1.0", + "react/promise": "^1.2 || ^2.7", + "seld/jsonlint": "^1.4", + "seld/phar-utils": "^1.0", + "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0", + "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0", + "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0", + "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0" + }, + "require-dev": { + "phpspec/prophecy": "^1.10", + "symfony/phpunit-bridge": "^4.2 || ^5.0" + }, + "suggest": { + "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages", + "ext-zip": "Enabling the zip extension allows you to unzip archives", + "ext-zlib": "Allow gzip compression of HTTP requests" + }, + "bin": [ + "bin/composer" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "2.0-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\": "src/Composer" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "https://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "https://seld.be" + } + ], + "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.", + "homepage": "https://getcomposer.org/", + "keywords": [ + "autoload", + "dependency", + "package" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/composer/issues", + "source": "https://github.com/composer/composer/tree/2.0.9" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2021-01-27T15:09:27+00:00" + }, + { + "name": "composer/semver", + "version": "3.2.4", + "source": { + "type": "git", + "url": "https://github.com/composer/semver.git", + "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/semver/zipball/a02fdf930a3c1c3ed3a49b5f63859c0c20e10464", + "reference": "a02fdf930a3c1c3ed3a49b5f63859c0c20e10464", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpstan/phpstan": "^0.12.54", + "symfony/phpunit-bridge": "^4.2 || ^5" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "3.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Semver\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "Semver library that offers utilities, version constraint parsing and validation.", + "keywords": [ + "semantic", + "semver", + "validation", + "versioning" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/semver/issues", + "source": "https://github.com/composer/semver/tree/3.2.4" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-11-13T08:59:24+00:00" + }, + { + "name": "composer/spdx-licenses", + "version": "1.5.5", + "source": { + "type": "git", + "url": "https://github.com/composer/spdx-licenses.git", + "reference": "de30328a7af8680efdc03e396aad24befd513200" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200", + "reference": "de30328a7af8680efdc03e396aad24befd513200", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Composer\\Spdx\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nils Adermann", + "email": "naderman@naderman.de", + "homepage": "http://www.naderman.de" + }, + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + }, + { + "name": "Rob Bast", + "email": "rob.bast@gmail.com", + "homepage": "http://robbast.nl" + } + ], + "description": "SPDX licenses list and validation library.", + "keywords": [ + "license", + "spdx", + "validator" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/spdx-licenses/issues", + "source": "https://github.com/composer/spdx-licenses/tree/1.5.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-12-03T16:04:16+00:00" + }, + { + "name": "composer/xdebug-handler", + "version": "1.4.5", + "source": { + "type": "git", + "url": "https://github.com/composer/xdebug-handler.git", + "reference": "f28d44c286812c714741478d968104c5e604a1d4" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f28d44c286812c714741478d968104c5e604a1d4", + "reference": "f28d44c286812c714741478d968104c5e604a1d4", + "shasum": "" + }, + "require": { + "php": "^5.3.2 || ^7.0 || ^8.0", + "psr/log": "^1.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Composer\\XdebugHandler\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "John Stevenson", + "email": "john-stevenson@blueyonder.co.uk" + } + ], + "description": "Restarts a process without Xdebug.", + "keywords": [ + "Xdebug", + "performance" + ], + "support": { + "irc": "irc://irc.freenode.org/composer", + "issues": "https://github.com/composer/xdebug-handler/issues", + "source": "https://github.com/composer/xdebug-handler/tree/1.4.5" + }, + "funding": [ + { + "url": "https://packagist.com", + "type": "custom" + }, + { + "url": "https://github.com/composer", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/composer/composer", + "type": "tidelift" + } + ], + "time": "2020-11-13T08:04:11+00:00" + }, { "name": "cviebrock/laravel-elasticsearch", "version": "1.3.0", @@ -426,29 +856,33 @@ "laravel", "search" ], + "support": { + "issues": "https://github.com/cviebrock/laravel-elasticsearch/issues", + "source": "https://github.com/cviebrock/laravel-elasticsearch/tree/master" + }, "time": "2017-02-17T13:24:59+00:00" }, { "name": "dnoegel/php-xdg-base-dir", - "version": "0.1", + "version": "v0.1.1", "source": { "type": "git", "url": "https://github.com/dnoegel/php-xdg-base-dir.git", - "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a" + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a", - "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a", + "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", + "reference": "8f8a6e48c5ecb0f991c2fdcf5f154a47d85f9ffd", "shasum": "" }, "require": { "php": ">=5.3.2" }, "require-dev": { - "phpunit/phpunit": "@stable" + "phpunit/phpunit": "~7.0|~6.0|~5.0|~4.8.35" }, - "type": "project", + "type": "library", "autoload": { "psr-4": { "XdgBaseDir\\": "src/" @@ -459,7 +893,11 @@ "MIT" ], "description": "implementation of xdg base directory specification for php", - "time": "2014-10-24T07:27:01+00:00" + "support": { + "issues": "https://github.com/dnoegel/php-xdg-base-dir/issues", + "source": "https://github.com/dnoegel/php-xdg-base-dir/tree/v0.1.1" + }, + "time": "2019-12-04T15:06:13+00:00" }, { "name": "doctrine/annotations", @@ -527,6 +965,10 @@ "docblock", "parser" ], + "support": { + "issues": "https://github.com/doctrine/annotations/issues", + "source": "https://github.com/doctrine/annotations/tree/v1.4.0" + }, "time": "2017-02-24T16:22:25+00:00" }, { @@ -597,6 +1039,10 @@ "cache", "caching" ], + "support": { + "issues": "https://github.com/doctrine/cache/issues", + "source": "https://github.com/doctrine/cache/tree/1.6.x" + }, "time": "2017-07-22T12:49:21+00:00" }, { @@ -664,6 +1110,10 @@ "collections", "iterator" ], + "support": { + "issues": "https://github.com/doctrine/collections/issues", + "source": "https://github.com/doctrine/collections/tree/master" + }, "time": "2017-01-03T10:49:41+00:00" }, { @@ -737,6 +1187,10 @@ "persistence", "spl" ], + "support": { + "issues": "https://github.com/doctrine/common/issues", + "source": "https://github.com/doctrine/common/tree/v2.7.3" + }, "time": "2017-07-22T08:35:12+00:00" }, { @@ -808,37 +1262,46 @@ "persistence", "queryobject" ], + "support": { + "issues": "https://github.com/doctrine/dbal/issues", + "source": "https://github.com/doctrine/dbal/tree/v2.5.13" + }, "time": "2017-07-22T20:44:48+00:00" }, { "name": "doctrine/inflector", - "version": "v1.2.0", + "version": "1.4.3", "source": { "type": "git", "url": "https://github.com/doctrine/inflector.git", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462" + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/inflector/zipball/e11d84c6e018beedd929cff5220969a3c6d1d462", - "reference": "e11d84c6e018beedd929cff5220969a3c6d1d462", + "url": "https://api.github.com/repos/doctrine/inflector/zipball/4650c8b30c753a76bf44fb2ed00117d6f367490c", + "reference": "4650c8b30c753a76bf44fb2ed00117d6f367490c", "shasum": "" }, "require": { - "php": "^7.0" + "php": "^7.2 || ^8.0" }, "require-dev": { - "phpunit/phpunit": "^6.2" + "doctrine/coding-standard": "^7.0", + "phpstan/phpstan": "^0.11", + "phpstan/phpstan-phpunit": "^0.11", + "phpstan/phpstan-strict-rules": "^0.11", + "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.2.x-dev" + "dev-master": "2.0.x-dev" } }, "autoload": { "psr-4": { - "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector" + "Doctrine\\Common\\Inflector\\": "lib/Doctrine/Common/Inflector", + "Doctrine\\Inflector\\": "lib/Doctrine/Inflector" } }, "notification-url": "https://packagist.org/downloads/", @@ -846,6 +1309,10 @@ "MIT" ], "authors": [ + { + "name": "Guilherme Blanco", + "email": "guilhermeblanco@gmail.com" + }, { "name": "Roman Borschel", "email": "roman@code-factory.org" @@ -854,10 +1321,6 @@ "name": "Benjamin Eberlei", "email": "kontakt@beberlei.de" }, - { - "name": "Guilherme Blanco", - "email": "guilhermeblanco@gmail.com" - }, { "name": "Jonathan Wage", "email": "jonwage@gmail.com" @@ -867,15 +1330,39 @@ "email": "schmittjoh@gmail.com" } ], - "description": "Common String Manipulations with regard to casing and singular/plural rules.", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.", + "homepage": "https://www.doctrine-project.org/projects/inflector.html", "keywords": [ "inflection", - "pluralize", - "singularize", - "string" + "inflector", + "lowercase", + "manipulation", + "php", + "plural", + "singular", + "strings", + "uppercase", + "words" ], - "time": "2017-07-22T12:18:28+00:00" + "support": { + "issues": "https://github.com/doctrine/inflector/issues", + "source": "https://github.com/doctrine/inflector/tree/1.4.x" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector", + "type": "tidelift" + } + ], + "time": "2020-05-29T07:19:59+00:00" }, { "name": "doctrine/instantiator", @@ -929,34 +1416,43 @@ "constructor", "instantiate" ], + "support": { + "issues": "https://github.com/doctrine/instantiator/issues", + "source": "https://github.com/doctrine/instantiator/tree/master" + }, "time": "2015-06-14T21:17:01+00:00" }, { "name": "doctrine/lexer", - "version": "v1.0.1", + "version": "1.2.1", "source": { "type": "git", "url": "https://github.com/doctrine/lexer.git", - "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c" + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/doctrine/lexer/zipball/83893c552fd2045dd78aef794c31e694c37c0b8c", - "reference": "83893c552fd2045dd78aef794c31e694c37c0b8c", + "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042", + "reference": "e864bbf5904cb8f5bb334f99209b48018522f042", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "doctrine/coding-standard": "^6.0", + "phpstan/phpstan": "^0.11.8", + "phpunit/phpunit": "^8.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.2.x-dev" } }, "autoload": { - "psr-0": { - "Doctrine\\Common\\Lexer\\": "lib/" + "psr-4": { + "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer" } }, "notification-url": "https://packagist.org/downloads/", @@ -964,48 +1460,70 @@ "MIT" ], "authors": [ - { - "name": "Roman Borschel", - "email": "roman@code-factory.org" - }, { "name": "Guilherme Blanco", "email": "guilhermeblanco@gmail.com" }, + { + "name": "Roman Borschel", + "email": "roman@code-factory.org" + }, { "name": "Johannes Schmitt", "email": "schmittjoh@gmail.com" } ], - "description": "Base library for a lexer that can be used in Top-Down, Recursive Descent Parsers.", - "homepage": "http://www.doctrine-project.org", + "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.", + "homepage": "https://www.doctrine-project.org/projects/lexer.html", "keywords": [ + "annotations", + "docblock", "lexer", - "parser" + "parser", + "php" ], - "time": "2014-09-09T13:34:57+00:00" + "support": { + "issues": "https://github.com/doctrine/lexer/issues", + "source": "https://github.com/doctrine/lexer/tree/1.2.1" + }, + "funding": [ + { + "url": "https://www.doctrine-project.org/sponsorship.html", + "type": "custom" + }, + { + "url": "https://www.patreon.com/phpdoctrine", + "type": "patreon" + }, + { + "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer", + "type": "tidelift" + } + ], + "time": "2020-05-25T17:44:05+00:00" }, { "name": "egulias/email-validator", - "version": "2.1.3", + "version": "2.1.25", "source": { "type": "git", "url": "https://github.com/egulias/EmailValidator.git", - "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04" + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/1bec00a10039b823cc94eef4eddd47dcd3b2ca04", - "reference": "1bec00a10039b823cc94eef4eddd47dcd3b2ca04", + "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4", + "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4", "shasum": "" }, "require": { "doctrine/lexer": "^1.0.1", - "php": ">= 5.5" + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.10" }, "require-dev": { - "dominicsayers/isemail": "dev-master", - "phpunit/phpunit": "^4.8.35", + "dominicsayers/isemail": "^3.0.7", + "phpunit/phpunit": "^4.8.36|^7.5.15", "satooshi/php-coveralls": "^1.0.1" }, "suggest": { @@ -1014,12 +1532,12 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "2.1.x-dev" } }, "autoload": { "psr-4": { - "Egulias\\EmailValidator\\": "EmailValidator" + "Egulias\\EmailValidator\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1040,20 +1558,30 @@ "validation", "validator" ], - "time": "2017-11-15T23:40:40+00:00" + "support": { + "issues": "https://github.com/egulias/EmailValidator/issues", + "source": "https://github.com/egulias/EmailValidator/tree/2.1.25" + }, + "funding": [ + { + "url": "https://github.com/egulias", + "type": "github" + } + ], + "time": "2020-12-29T14:50:06+00:00" }, { "name": "elasticsearch/elasticsearch", - "version": "v2.3.1", + "version": "v2.4.0", "source": { "type": "git", "url": "https://github.com/elastic/elasticsearch-php.git", - "reference": "cb3b2438faac3fb4480a9af89a2a45bcb5049741" + "reference": "546332c9cb6d86d8febcb65ba4ce3956ba20175b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/cb3b2438faac3fb4480a9af89a2a45bcb5049741", - "reference": "cb3b2438faac3fb4480a9af89a2a45bcb5049741", + "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/546332c9cb6d86d8febcb65ba4ce3956ba20175b", + "reference": "546332c9cb6d86d8febcb65ba4ce3956ba20175b", "shasum": "" }, "require": { @@ -1094,23 +1622,28 @@ "elasticsearch", "search" ], - "time": "2017-08-25T13:38:16+00:00" + "support": { + "issues": "https://github.com/elastic/elasticsearch-php/issues", + "source": "https://github.com/elastic/elasticsearch-php/tree/v2.4.0" + }, + "time": "2019-01-08T19:01:56+00:00" }, { "name": "erusev/parsedown", - "version": "1.6.4", + "version": "1.7.4", "source": { "type": "git", "url": "https://github.com/erusev/parsedown.git", - "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548" + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/erusev/parsedown/zipball/fbe3fe878f4fe69048bb8a52783a09802004f548", - "reference": "fbe3fe878f4fe69048bb8a52783a09802004f548", + "url": "https://api.github.com/repos/erusev/parsedown/zipball/cb17b6477dfff935958ba01325f2e8a2bfa6dab3", + "reference": "cb17b6477dfff935958ba01325f2e8a2bfa6dab3", "shasum": "" }, "require": { + "ext-mbstring": "*", "php": ">=5.3.0" }, "require-dev": { @@ -1139,20 +1672,24 @@ "markdown", "parser" ], - "time": "2017-11-14T20:44:03+00:00" + "support": { + "issues": "https://github.com/erusev/parsedown/issues", + "source": "https://github.com/erusev/parsedown/tree/1.7.x" + }, + "time": "2019-12-30T22:54:17+00:00" }, { "name": "fgrosse/phpasn1", - "version": "1.5.2", + "version": "v1.5.4", "source": { "type": "git", "url": "https://github.com/fgrosse/PHPASN1.git", - "reference": "a18b162eca6aa70f8f15615f4ac8c852dffbc7dd" + "reference": "4fe0afb91b4ce3ca08c63d9cf31cec1150828e97" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/a18b162eca6aa70f8f15615f4ac8c852dffbc7dd", - "reference": "a18b162eca6aa70f8f15615f4ac8c852dffbc7dd", + "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/4fe0afb91b4ce3ca08c63d9cf31cec1150828e97", + "reference": "4fe0afb91b4ce3ca08c63d9cf31cec1150828e97", "shasum": "" }, "require": { @@ -1160,8 +1697,8 @@ "php": ">=5.6.0" }, "require-dev": { - "phpunit/phpunit": "~4.5", - "satooshi/php-coveralls": "dev-master" + "php-coveralls/php-coveralls": "^1.0|^2.0", + "phpunit/phpunit": "~4.5" }, "suggest": { "php-curl": "For loading OID information from the web if they have not bee defined statically" @@ -1208,20 +1745,24 @@ "x509", "x690" ], - "time": "2016-10-29T15:46:46+00:00" + "support": { + "issues": "https://github.com/fgrosse/PHPASN1/issues", + "source": "https://github.com/fgrosse/PHPASN1/tree/1.5" + }, + "time": "2018-12-02T01:31:42+00:00" }, { "name": "graham-campbell/exceptions", - "version": "v10.0.0", + "version": "v10.1.0", "source": { "type": "git", "url": "https://github.com/GrahamCampbell/Laravel-Exceptions.git", - "reference": "e2e9db159ded93567750a94a0f1358270ffaadc5" + "reference": "aa191a1d5489c6243bd0533aac3d1004bf56ddd3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/e2e9db159ded93567750a94a0f1358270ffaadc5", - "reference": "e2e9db159ded93567750a94a0f1358270ffaadc5", + "url": "https://api.github.com/repos/GrahamCampbell/Laravel-Exceptions/zipball/aa191a1d5489c6243bd0533aac3d1004bf56ddd3", + "reference": "aa191a1d5489c6243bd0533aac3d1004bf56ddd3", "shasum": "" }, "require": { @@ -1229,16 +1770,16 @@ "illuminate/support": "5.3.*|5.4.*|5.5.*", "php": "^7.0", "psr/log": "^1.0", - "symfony/console": "^3.1", - "symfony/debug": "^3.1", - "symfony/http-foundation": "^3.1" + "symfony/console": "^3.1|^4.0", + "symfony/debug": "^3.1|^4.0", + "symfony/http-foundation": "^3.1|^4.0" }, "require-dev": { "filp/whoops": "^1.1|^2.0", - "graham-campbell/analyzer": "^1.1", - "graham-campbell/testbench": "^4.0", - "mockery/mockery": "dev-master#c90a17247147543081e4d00f46911e422b49e583", - "phpunit/phpunit": "^6.0" + "graham-campbell/analyzer": "^2.0", + "graham-campbell/testbench": "^4.0|^5.0", + "mockery/mockery": "^1.0", + "phpunit/phpunit": "^6.5" }, "suggest": { "filp/whoops": "Enables use of the debug displayer." @@ -1246,7 +1787,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "10.0-dev" + "dev-master": "10.1-dev" }, "laravel": { "providers": [ @@ -1283,31 +1824,37 @@ "laravel", "whoops" ], - "time": "2017-08-06T20:56:02+00:00" + "support": { + "issues": "https://github.com/GrahamCampbell/Laravel-Exceptions/issues", + "source": "https://github.com/GrahamCampbell/Laravel-Exceptions/tree/master" + }, + "time": "2018-01-02T18:20:48+00:00" }, { "name": "guzzlehttp/guzzle", - "version": "6.3.0", + "version": "6.5.5", "source": { "type": "git", "url": "https://github.com/guzzle/guzzle.git", - "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699" + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/guzzle/zipball/f4db5a78a5ea468d4831de7f0bf9d9415e348699", - "reference": "f4db5a78a5ea468d4831de7f0bf9d9415e348699", + "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", + "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e", "shasum": "" }, "require": { + "ext-json": "*", "guzzlehttp/promises": "^1.0", - "guzzlehttp/psr7": "^1.4", - "php": ">=5.5" + "guzzlehttp/psr7": "^1.6.1", + "php": ">=5.5", + "symfony/polyfill-intl-idn": "^1.17.0" }, "require-dev": { "ext-curl": "*", - "phpunit/phpunit": "^4.0 || ^5.0", - "psr/log": "^1.0" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0", + "psr/log": "^1.1" }, "suggest": { "psr/log": "Required for using the Log middleware" @@ -1315,16 +1862,16 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "6.2-dev" + "dev-master": "6.5-dev" } }, "autoload": { - "files": [ - "src/functions_include.php" - ], "psr-4": { "GuzzleHttp\\": "src/" - } + }, + "files": [ + "src/functions_include.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -1348,27 +1895,31 @@ "rest", "web service" ], - "time": "2017-06-22T18:50:49+00:00" + "support": { + "issues": "https://github.com/guzzle/guzzle/issues", + "source": "https://github.com/guzzle/guzzle/tree/6.5" + }, + "time": "2020-06-16T21:01:06+00:00" }, { "name": "guzzlehttp/promises", - "version": "v1.3.1", + "version": "1.4.0", "source": { "type": "git", "url": "https://github.com/guzzle/promises.git", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646" + "reference": "60d379c243457e073cff02bc323a2a86cb355631" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/promises/zipball/a59da6cf61d80060647ff4d3eb2c03a2bc694646", - "reference": "a59da6cf61d80060647ff4d3eb2c03a2bc694646", + "url": "https://api.github.com/repos/guzzle/promises/zipball/60d379c243457e073cff02bc323a2a86cb355631", + "reference": "60d379c243457e073cff02bc323a2a86cb355631", "shasum": "" }, "require": { - "php": ">=5.5.0" + "php": ">=5.5" }, "require-dev": { - "phpunit/phpunit": "^4.0" + "symfony/phpunit-bridge": "^4.4 || ^5.1" }, "type": "library", "extra": { @@ -1399,36 +1950,45 @@ "keywords": [ "promise" ], - "time": "2016-12-20T10:07:11+00:00" + "support": { + "issues": "https://github.com/guzzle/promises/issues", + "source": "https://github.com/guzzle/promises/tree/1.4.0" + }, + "time": "2020-09-30T07:37:28+00:00" }, { "name": "guzzlehttp/psr7", - "version": "1.4.2", + "version": "1.7.0", "source": { "type": "git", "url": "https://github.com/guzzle/psr7.git", - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c" + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/psr7/zipball/f5b8a8512e2b58b0071a7280e39f14f72e05d87c", - "reference": "f5b8a8512e2b58b0071a7280e39f14f72e05d87c", + "url": "https://api.github.com/repos/guzzle/psr7/zipball/53330f47520498c0ae1f61f7e2c90f55690c06a3", + "reference": "53330f47520498c0ae1f61f7e2c90f55690c06a3", "shasum": "" }, "require": { "php": ">=5.4.0", - "psr/http-message": "~1.0" + "psr/http-message": "~1.0", + "ralouphie/getallheaders": "^2.0.5 || ^3.0.0" }, "provide": { "psr/http-message-implementation": "1.0" }, "require-dev": { - "phpunit/phpunit": "~4.0" + "ext-zlib": "*", + "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10" + }, + "suggest": { + "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.4-dev" + "dev-master": "1.7-dev" } }, "autoload": { @@ -1458,26 +2018,31 @@ "keywords": [ "http", "message", + "psr-7", "request", "response", "stream", "uri", "url" ], - "time": "2017-03-20T17:10:46+00:00" + "support": { + "issues": "https://github.com/guzzle/psr7/issues", + "source": "https://github.com/guzzle/psr7/tree/1.7.0" + }, + "time": "2020-09-30T07:37:11+00:00" }, { "name": "guzzlehttp/ringphp", - "version": "1.1.0", + "version": "1.1.1", "source": { "type": "git", "url": "https://github.com/guzzle/RingPHP.git", - "reference": "dbbb91d7f6c191e5e405e900e3102ac7f261bc0b" + "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/dbbb91d7f6c191e5e405e900e3102ac7f261bc0b", - "reference": "dbbb91d7f6c191e5e405e900e3102ac7f261bc0b", + "url": "https://api.github.com/repos/guzzle/RingPHP/zipball/5e2a174052995663dd68e6b5ad838afd47dd615b", + "reference": "5e2a174052995663dd68e6b5ad838afd47dd615b", "shasum": "" }, "require": { @@ -1515,7 +2080,12 @@ } ], "description": "Provides a simple API and specification that abstracts away the details of HTTP into a single PHP function.", - "time": "2015-05-20T03:37:09+00:00" + "support": { + "issues": "https://github.com/guzzle/RingPHP/issues", + "source": "https://github.com/guzzle/RingPHP/tree/1.1.1" + }, + "abandoned": true, + "time": "2018-07-31T13:22:33+00:00" }, { "name": "guzzlehttp/streams", @@ -1565,20 +2135,25 @@ "Guzzle", "stream" ], + "support": { + "issues": "https://github.com/guzzle/streams/issues", + "source": "https://github.com/guzzle/streams/tree/master" + }, + "abandoned": true, "time": "2014-10-12T19:18:40+00:00" }, { "name": "intouch/laravel-newrelic", - "version": "2.2.0", + "version": "2.2.2", "source": { "type": "git", "url": "https://github.com/In-Touch/laravel-newrelic.git", - "reference": "4c99149eb5032feaeac889e3f455ffcf92a869d9" + "reference": "18673d93ab6eaaedbe7804e7753b1113a437b094" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/In-Touch/laravel-newrelic/zipball/4c99149eb5032feaeac889e3f455ffcf92a869d9", - "reference": "4c99149eb5032feaeac889e3f455ffcf92a869d9", + "url": "https://api.github.com/repos/In-Touch/laravel-newrelic/zipball/18673d93ab6eaaedbe7804e7753b1113a437b094", + "reference": "18673d93ab6eaaedbe7804e7753b1113a437b094", "shasum": "" }, "require": { @@ -1609,29 +2184,36 @@ "new relic", "newrelic" ], - "time": "2017-04-04T14:55:18+00:00" + "support": { + "issues": "https://github.com/In-Touch/laravel-newrelic/issues", + "source": "https://github.com/In-Touch/laravel-newrelic/tree/master" + }, + "time": "2019-02-06T01:45:48+00:00" }, { "name": "intouch/newrelic", - "version": "1.0.3", + "version": "v2.0.0", "source": { "type": "git", "url": "https://github.com/In-Touch/newrelic.git", - "reference": "20db6cb25a9eb88e504e16829077c56828c176cc" + "reference": "6cfe02b31ac6ec8f7ef3baa2ba3b50fe7454bccd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/In-Touch/newrelic/zipball/20db6cb25a9eb88e504e16829077c56828c176cc", - "reference": "20db6cb25a9eb88e504e16829077c56828c176cc", + "url": "https://api.github.com/repos/In-Touch/newrelic/zipball/6cfe02b31ac6ec8f7ef3baa2ba3b50fe7454bccd", + "reference": "6cfe02b31ac6ec8f7ef3baa2ba3b50fe7454bccd", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=7.0.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8" }, "type": "library", "autoload": { - "psr-0": { - "Intouch\\Newrelic": "src/" + "psr-4": { + "Intouch\\Newrelic\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -1650,7 +2232,11 @@ "new relic", "newrelic" ], - "time": "2014-08-18T12:08:45+00:00" + "support": { + "issues": "https://github.com/In-Touch/newrelic/issues", + "source": "https://github.com/In-Touch/newrelic/tree/master" + }, + "time": "2019-01-26T23:44:00+00:00" }, { "name": "ircmaxell/random-lib", @@ -1705,6 +2291,10 @@ "random-numbers", "random-strings" ], + "support": { + "issues": "https://github.com/ircmaxell/RandomLib/issues", + "source": "https://github.com/ircmaxell/RandomLib/tree/master" + }, "time": "2016-09-07T15:52:06+00:00" }, { @@ -1751,36 +2341,40 @@ ], "description": "A Base Security Library", "homepage": "https://github.com/ircmaxell/SecurityLib", + "support": { + "issues": "https://github.com/ircmaxell/SecurityLib/issues", + "source": "https://github.com/ircmaxell/SecurityLib/tree/master" + }, "time": "2015-03-20T14:31:23+00:00" }, { "name": "jakub-onderka/php-console-color", - "version": "0.1", + "version": "v0.2", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1" + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1", - "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/d5deaecff52a0d61ccb613bb3804088da0307191", + "reference": "d5deaecff52a0d61ccb613bb3804088da0307191", "shasum": "" }, "require": { - "php": ">=5.3.2" + "php": ">=5.4.0" }, "require-dev": { "jakub-onderka/php-code-style": "1.0", - "jakub-onderka/php-parallel-lint": "0.*", + "jakub-onderka/php-parallel-lint": "1.0", "jakub-onderka/php-var-dump-check": "0.*", - "phpunit/phpunit": "3.7.*", + "phpunit/phpunit": "~4.3", "squizlabs/php_codesniffer": "1.*" }, "type": "library", "autoload": { - "psr-0": { - "JakubOnderka\\PhpConsoleColor": "src/" + "psr-4": { + "JakubOnderka\\PhpConsoleColor\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1790,41 +2384,46 @@ "authors": [ { "name": "Jakub Onderka", - "email": "jakub.onderka@gmail.com", - "homepage": "http://www.acci.cz" + "email": "jakub.onderka@gmail.com" } ], - "time": "2014-04-08T15:00:19+00:00" + "support": { + "issues": "https://github.com/JakubOnderka/PHP-Console-Color/issues", + "source": "https://github.com/JakubOnderka/PHP-Console-Color/tree/master" + }, + "abandoned": "php-parallel-lint/php-console-color", + "time": "2018-09-29T17:23:10+00:00" }, { "name": "jakub-onderka/php-console-highlighter", - "version": "v0.3.2", + "version": "v0.4", "source": { "type": "git", "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", - "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5" + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5", - "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5", + "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/9f7a229a69d52506914b4bc61bfdb199d90c5547", + "reference": "9f7a229a69d52506914b4bc61bfdb199d90c5547", "shasum": "" }, "require": { - "jakub-onderka/php-console-color": "~0.1", - "php": ">=5.3.0" + "ext-tokenizer": "*", + "jakub-onderka/php-console-color": "~0.2", + "php": ">=5.4.0" }, "require-dev": { "jakub-onderka/php-code-style": "~1.0", - "jakub-onderka/php-parallel-lint": "~0.5", + "jakub-onderka/php-parallel-lint": "~1.0", "jakub-onderka/php-var-dump-check": "~0.1", "phpunit/phpunit": "~4.0", "squizlabs/php_codesniffer": "~1.5" }, "type": "library", "autoload": { - "psr-0": { - "JakubOnderka\\PhpConsoleHighlighter": "src/" + "psr-4": { + "JakubOnderka\\PhpConsoleHighlighter\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -1838,28 +2437,104 @@ "homepage": "http://www.acci.cz/" } ], - "time": "2015-04-20T18:58:01+00:00" + "description": "Highlight PHP code in terminal", + "support": { + "issues": "https://github.com/JakubOnderka/PHP-Console-Highlighter/issues", + "source": "https://github.com/JakubOnderka/PHP-Console-Highlighter/tree/master" + }, + "abandoned": "php-parallel-lint/php-console-highlighter", + "time": "2018-09-29T18:48:56+00:00" }, { - "name": "ksubileau/color-thief-php", - "version": "v1.3.1", + "name": "justinrainbow/json-schema", + "version": "5.2.10", "source": { "type": "git", - "url": "https://github.com/ksubileau/color-thief-php.git", - "reference": "a673d7d3fa815c70fa4bebdee74d337e9e6944fa" + "url": "https://github.com/justinrainbow/json-schema.git", + "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ksubileau/color-thief-php/zipball/a673d7d3fa815c70fa4bebdee74d337e9e6944fa", - "reference": "a673d7d3fa815c70fa4bebdee74d337e9e6944fa", + "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b", + "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b", "shasum": "" }, "require": { - "php": ">=5.3.0" + "php": ">=5.3.3" }, "require-dev": { - "phpunit/phpunit": "~4.8|~5.7", - "squizlabs/php_codesniffer": "~2.7" + "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1", + "json-schema/json-schema-test-suite": "1.2.0", + "phpunit/phpunit": "^4.8.35" + }, + "bin": [ + "bin/validate-json" + ], + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "5.0.x-dev" + } + }, + "autoload": { + "psr-4": { + "JsonSchema\\": "src/JsonSchema/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Bruno Prieto Reis", + "email": "bruno.p.reis@gmail.com" + }, + { + "name": "Justin Rainbow", + "email": "justin.rainbow@gmail.com" + }, + { + "name": "Igor Wiedler", + "email": "igor@wiedler.ch" + }, + { + "name": "Robert Schönthal", + "email": "seroscho@googlemail.com" + } + ], + "description": "A library to validate a json schema.", + "homepage": "https://github.com/justinrainbow/json-schema", + "keywords": [ + "json", + "schema" + ], + "support": { + "issues": "https://github.com/justinrainbow/json-schema/issues", + "source": "https://github.com/justinrainbow/json-schema/tree/5.2.10" + }, + "time": "2020-05-27T16:41:55+00:00" + }, + { + "name": "ksubileau/color-thief-php", + "version": "v1.4.1", + "source": { + "type": "git", + "url": "https://github.com/ksubileau/color-thief-php.git", + "reference": "fc2acefacbd037f68cf61bcc62b30ac1bb16ed59" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ksubileau/color-thief-php/zipball/fc2acefacbd037f68cf61bcc62b30ac1bb16ed59", + "reference": "fc2acefacbd037f68cf61bcc62b30ac1bb16ed59", + "shasum": "" + }, + "require": { + "php": ">=5.4.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.13", + "phpunit/phpunit": "~4.8|~5.7" }, "suggest": { "ext-gd": "to use the GD image adapter.", @@ -1891,31 +2566,98 @@ "php", "thief" ], - "time": "2016-12-18T03:12:25+00:00" + "support": { + "issues": "https://github.com/ksubileau/color-thief-php/issues", + "source": "https://github.com/ksubileau/color-thief-php/tree/master" + }, + "time": "2018-10-27T18:57:38+00:00" }, { - "name": "laravel/framework", - "version": "v5.5.22", + "name": "kylekatarnls/update-helper", + "version": "1.2.1", "source": { "type": "git", - "url": "https://github.com/laravel/framework.git", - "reference": "2404af887ca8272d721628a99bbc721ac3b692e7" + "url": "https://github.com/kylekatarnls/update-helper.git", + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/framework/zipball/2404af887ca8272d721628a99bbc721ac3b692e7", - "reference": "2404af887ca8272d721628a99bbc721ac3b692e7", + "url": "https://api.github.com/repos/kylekatarnls/update-helper/zipball/429be50660ed8a196e0798e5939760f168ec8ce9", + "reference": "429be50660ed8a196e0798e5939760f168ec8ce9", + "shasum": "" + }, + "require": { + "composer-plugin-api": "^1.1.0 || ^2.0.0", + "php": ">=5.3.0" + }, + "require-dev": { + "codeclimate/php-test-reporter": "dev-master", + "composer/composer": "2.0.x-dev || ^2.0.0-dev", + "phpunit/phpunit": ">=4.8.35 <6.0" + }, + "type": "composer-plugin", + "extra": { + "class": "UpdateHelper\\ComposerPlugin" + }, + "autoload": { + "psr-0": { + "UpdateHelper\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Kyle", + "email": "kylekatarnls@gmail.com" + } + ], + "description": "Update helper", + "support": { + "issues": "https://github.com/kylekatarnls/update-helper/issues", + "source": "https://github.com/kylekatarnls/update-helper/tree/1.2.1" + }, + "funding": [ + { + "url": "https://github.com/kylekatarnls", + "type": "github" + }, + { + "url": "https://opencollective.com/Carbon", + "type": "open_collective" + }, + { + "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon", + "type": "tidelift" + } + ], + "time": "2020-04-07T20:44:10+00:00" + }, + { + "name": "laravel/framework", + "version": "v5.5.50", + "source": { + "type": "git", + "url": "https://github.com/laravel/framework.git", + "reference": "c62385a23c639742b3b74a4a78640da25e6b782b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/laravel/framework/zipball/c62385a23c639742b3b74a4a78640da25e6b782b", + "reference": "c62385a23c639742b3b74a4a78640da25e6b782b", "shasum": "" }, "require": { "doctrine/inflector": "~1.1", - "erusev/parsedown": "~1.6", + "erusev/parsedown": "~1.7", "ext-mbstring": "*", "ext-openssl": "*", - "league/flysystem": "~1.0", + "league/flysystem": "^1.0.8", "monolog/monolog": "~1.12", "mtdowling/cron-expression": "~1.0", - "nesbot/carbon": "~1.20", + "nesbot/carbon": "^1.26.0", "php": ">=7.0", "psr/container": "~1.0", "psr/simple-cache": "^1.0", @@ -1961,7 +2703,7 @@ "illuminate/translation": "self.version", "illuminate/validation": "self.version", "illuminate/view": "self.version", - "tightenco/collect": "self.version" + "tightenco/collect": "<5.5.33" }, "require-dev": { "aws/aws-sdk-php": "~3.0", @@ -1984,6 +2726,7 @@ "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~6.0).", "laravel/tinker": "Required to use the tinker console command (~1.0).", "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).", + "league/flysystem-cached-adapter": "Required to use Flysystem caching (~1.0).", "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).", "nexmo/client": "Required to use the Nexmo transport (~1.0).", "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).", @@ -2024,29 +2767,33 @@ "framework", "laravel" ], - "time": "2017-11-27T15:29:55+00:00" + "support": { + "issues": "https://github.com/laravel/framework/issues", + "source": "https://github.com/laravel/framework" + }, + "time": "2020-08-18T13:47:57+00:00" }, { "name": "laravel/tinker", - "version": "v1.0.2", + "version": "v1.0.10", "source": { "type": "git", "url": "https://github.com/laravel/tinker.git", - "reference": "203978fd67f118902acff95925847e70b72e3daf" + "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/laravel/tinker/zipball/203978fd67f118902acff95925847e70b72e3daf", - "reference": "203978fd67f118902acff95925847e70b72e3daf", + "url": "https://api.github.com/repos/laravel/tinker/zipball/ad571aacbac1539c30d480908f9d0c9614eaf1a7", + "reference": "ad571aacbac1539c30d480908f9d0c9614eaf1a7", "shasum": "" }, "require": { - "illuminate/console": "~5.1", - "illuminate/contracts": "~5.1", - "illuminate/support": "~5.1", + "illuminate/console": "~5.1|^6.0", + "illuminate/contracts": "~5.1|^6.0", + "illuminate/support": "~5.1|^6.0", "php": ">=5.5.9", - "psy/psysh": "0.7.*|0.8.*", - "symfony/var-dumper": "~3.0" + "psy/psysh": "0.7.*|0.8.*|0.9.*", + "symfony/var-dumper": "~3.0|~4.0" }, "require-dev": { "phpunit/phpunit": "~4.0|~5.0" @@ -2087,36 +2834,42 @@ "laravel", "psysh" ], - "time": "2017-07-13T13:11:05+00:00" + "support": { + "issues": "https://github.com/laravel/tinker/issues", + "source": "https://github.com/laravel/tinker/tree/v1.0.10" + }, + "time": "2019-08-07T15:10:45+00:00" }, { "name": "league/flysystem", - "version": "1.0.41", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/thephpleague/flysystem.git", - "reference": "f400aa98912c561ba625ea4065031b7a41e5a155" + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/f400aa98912c561ba625ea4065031b7a41e5a155", - "reference": "f400aa98912c561ba625ea4065031b7a41e5a155", + "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a", + "reference": "9be3b16c877d477357c015cec057548cf9b2a14a", "shasum": "" }, "require": { - "php": ">=5.5.9" + "ext-fileinfo": "*", + "league/mime-type-detection": "^1.3", + "php": "^7.2.5 || ^8.0" }, "conflict": { "league/flysystem-sftp": "<1.0.6" }, "require-dev": { - "ext-fileinfo": "*", - "mockery/mockery": "~0.9", - "phpspec/phpspec": "^2.2", - "phpunit/phpunit": "~4.8" + "phpspec/prophecy": "^1.11.1", + "phpunit/phpunit": "^8.5.8" }, "suggest": { "ext-fileinfo": "Required for MimeType", + "ext-ftp": "Allows you to use FTP server storage", + "ext-openssl": "Allows you to use FTPS server storage", "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", @@ -2170,7 +2923,73 @@ "sftp", "storage" ], - "time": "2017-08-06T17:41:04+00:00" + "support": { + "issues": "https://github.com/thephpleague/flysystem/issues", + "source": "https://github.com/thephpleague/flysystem/tree/1.x" + }, + "funding": [ + { + "url": "https://offset.earth/frankdejonge", + "type": "other" + } + ], + "time": "2020-08-23T07:39:11+00:00" + }, + { + "name": "league/mime-type-detection", + "version": "1.7.0", + "source": { + "type": "git", + "url": "https://github.com/thephpleague/mime-type-detection.git", + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3", + "shasum": "" + }, + "require": { + "ext-fileinfo": "*", + "php": "^7.2 || ^8.0" + }, + "require-dev": { + "friendsofphp/php-cs-fixer": "^2.18", + "phpstan/phpstan": "^0.12.68", + "phpunit/phpunit": "^8.5.8 || ^9.3" + }, + "type": "library", + "autoload": { + "psr-4": { + "League\\MimeTypeDetection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Frank de Jonge", + "email": "info@frankdejonge.nl" + } + ], + "description": "Mime-type detection for Flysystem", + "support": { + "issues": "https://github.com/thephpleague/mime-type-detection/issues", + "source": "https://github.com/thephpleague/mime-type-detection/tree/1.7.0" + }, + "funding": [ + { + "url": "https://github.com/frankdejonge", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/league/flysystem", + "type": "tidelift" + } + ], + "time": "2021-01-18T20:58:21+00:00" }, { "name": "league/oauth2-client", @@ -2233,6 +3052,10 @@ "oauth2", "single sign on" ], + "support": { + "issues": "https://github.com/thephpleague/oauth2-client/issues", + "source": "https://github.com/thephpleague/oauth2-client/tree/master" + }, "time": "2016-07-28T13:20:43+00:00" }, { @@ -2294,27 +3117,31 @@ "debug", "debugbar" ], + "support": { + "issues": "https://github.com/maximebf/php-debugbar/issues", + "source": "https://github.com/maximebf/php-debugbar/tree/master" + }, "time": "2017-01-05T08:46:19+00:00" }, { "name": "mdanter/ecc", - "version": "v0.4.4", + "version": "v0.4.3", "source": { "type": "git", "url": "https://github.com/phpecc/phpecc.git", - "reference": "fa7cb47ed5225c86c9a6538faf07b351aa55d888" + "reference": "fa3405da1b2bb4772a0c908c65b0c3e9dde4ccfd" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpecc/phpecc/zipball/fa7cb47ed5225c86c9a6538faf07b351aa55d888", - "reference": "fa7cb47ed5225c86c9a6538faf07b351aa55d888", + "url": "https://api.github.com/repos/phpecc/phpecc/zipball/fa3405da1b2bb4772a0c908c65b0c3e9dde4ccfd", + "reference": "fa3405da1b2bb4772a0c908c65b0c3e9dde4ccfd", "shasum": "" }, "require": { "ext-gmp": "*", "fgrosse/phpasn1": "~1.5", "paragonie/random_compat": "^1|^2", - "php": ">=5.6.0, <7.2" + "php": ">=5.6.0" }, "require-dev": { "phpunit/phpunit": "~4.1|~5.0", @@ -2360,7 +3187,11 @@ "phpecc", "secp256k1" ], - "time": "2017-10-09T00:49:31+00:00" + "support": { + "issues": "https://github.com/phpecc/phpecc/issues", + "source": "https://github.com/phpecc/phpecc/tree/0.4" + }, + "time": "2017-09-22T15:12:06+00:00" }, { "name": "minishlink/web-push", @@ -2414,20 +3245,24 @@ "push", "web" ], + "support": { + "issues": "https://github.com/web-push-libs/web-push-php/issues", + "source": "https://github.com/web-push-libs/web-push-php/tree/master" + }, "time": "2017-06-28T19:03:40+00:00" }, { "name": "monolog/monolog", - "version": "1.23.0", + "version": "1.26.0", "source": { "type": "git", "url": "https://github.com/Seldaek/monolog.git", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4" + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Seldaek/monolog/zipball/fd8c787753b3a2ad11bc60c063cff1358a32a3b4", - "reference": "fd8c787753b3a2ad11bc60c063cff1358a32a3b4", + "url": "https://api.github.com/repos/Seldaek/monolog/zipball/2209ddd84e7ef1256b7af205d0717fb62cfc9c33", + "reference": "2209ddd84e7ef1256b7af205d0717fb62cfc9c33", "shasum": "" }, "require": { @@ -2441,11 +3276,10 @@ "aws/aws-sdk-php": "^2.4.9 || ^3.0", "doctrine/couchdb": "~1.0@dev", "graylog2/gelf-php": "~1.0", - "jakub-onderka/php-parallel-lint": "0.9", "php-amqplib/php-amqplib": "~2.4", "php-console/php-console": "^3.1.3", + "phpstan/phpstan": "^0.12.59", "phpunit/phpunit": "~4.5", - "phpunit/phpunit-mock-objects": "2.3.0", "ruflin/elastica": ">=0.90 <3.0", "sentry/sentry": "^0.13", "swiftmailer/swiftmailer": "^5.3|^6.0" @@ -2464,11 +3298,6 @@ "sentry/sentry": "Allow sending log messages to a Sentry server" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "2.0.x-dev" - } - }, "autoload": { "psr-4": { "Monolog\\": "src/Monolog" @@ -2492,20 +3321,34 @@ "logging", "psr-3" ], - "time": "2017-06-19T01:22:40+00:00" + "support": { + "issues": "https://github.com/Seldaek/monolog/issues", + "source": "https://github.com/Seldaek/monolog/tree/1.26.0" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/monolog/monolog", + "type": "tidelift" + } + ], + "time": "2020-12-14T12:56:38+00:00" }, { "name": "mtdowling/cron-expression", - "version": "v1.2.1", + "version": "v1.2.3", "source": { "type": "git", "url": "https://github.com/mtdowling/cron-expression.git", - "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad" + "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9504fa9ea681b586028adaaa0877db4aecf32bad", - "reference": "9504fa9ea681b586028adaaa0877db4aecf32bad", + "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/9be552eebcc1ceec9776378f7dcc085246cacca6", + "reference": "9be552eebcc1ceec9776378f7dcc085246cacca6", "shasum": "" }, "require": { @@ -2536,39 +3379,52 @@ "cron", "schedule" ], - "time": "2017-01-23T04:29:33+00:00" + "support": { + "issues": "https://github.com/mtdowling/cron-expression/issues", + "source": "https://github.com/mtdowling/cron-expression/tree/v1.2.3" + }, + "abandoned": "dragonmantank/cron-expression", + "time": "2019-12-28T04:23:06+00:00" }, { "name": "nesbot/carbon", - "version": "1.22.1", + "version": "1.39.1", "source": { "type": "git", "url": "https://github.com/briannesbitt/Carbon.git", - "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc" + "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", - "reference": "7cdf42c0b1cc763ab7e4c33c47a24e27c66bfccc", + "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4be0c005164249208ce1b5ca633cd57bdd42ff33", + "reference": "4be0c005164249208ce1b5ca633cd57bdd42ff33", "shasum": "" }, "require": { - "php": ">=5.3.0", - "symfony/translation": "~2.6 || ~3.0" + "kylekatarnls/update-helper": "^1.1", + "php": ">=5.3.9", + "symfony/translation": "~2.6 || ~3.0 || ~4.0" }, "require-dev": { + "composer/composer": "^1.2", "friendsofphp/php-cs-fixer": "~2", - "phpunit/phpunit": "~4.0 || ~5.0" + "phpunit/phpunit": "^4.8.35 || ^5.7" }, + "bin": [ + "bin/upgrade-carbon" + ], "type": "library", "extra": { - "branch-alias": { - "dev-master": "1.23-dev" + "update-helper": "Carbon\\Upgrade", + "laravel": { + "providers": [ + "Carbon\\Laravel\\ServiceProvider" + ] } }, "autoload": { "psr-4": { - "Carbon\\": "src/Carbon/" + "": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -2589,28 +3445,33 @@ "datetime", "time" ], - "time": "2017-01-16T07:55:07+00:00" + "support": { + "issues": "https://github.com/briannesbitt/Carbon/issues", + "source": "https://github.com/briannesbitt/Carbon" + }, + "time": "2019-10-14T05:51:36+00:00" }, { "name": "nikic/php-parser", - "version": "v3.1.2", + "version": "v4.10.4", "source": { "type": "git", "url": "https://github.com/nikic/PHP-Parser.git", - "reference": "08131e7ff29de6bb9f12275c7d35df71f25f4d89" + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/08131e7ff29de6bb9f12275c7d35df71f25f4d89", - "reference": "08131e7ff29de6bb9f12275c7d35df71f25f4d89", + "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c6d052fc58cb876152f89f532b95a8d7907e7f0e", + "reference": "c6d052fc58cb876152f89f532b95a8d7907e7f0e", "shasum": "" }, "require": { "ext-tokenizer": "*", - "php": ">=5.5" + "php": ">=7.0" }, "require-dev": { - "phpunit/phpunit": "~4.0|~5.0" + "ircmaxell/php-yacc": "^0.0.7", + "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0" }, "bin": [ "bin/php-parse" @@ -2618,7 +3479,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "4.9-dev" } }, "autoload": { @@ -2640,20 +3501,24 @@ "parser", "php" ], - "time": "2017-11-04T11:48:34+00:00" + "support": { + "issues": "https://github.com/nikic/PHP-Parser/issues", + "source": "https://github.com/nikic/PHP-Parser/tree/v4.10.4" + }, + "time": "2020-12-20T10:01:03+00:00" }, { "name": "paragonie/random_compat", - "version": "v2.0.11", + "version": "v2.0.19", "source": { "type": "git", "url": "https://github.com/paragonie/random_compat.git", - "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8" + "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/paragonie/random_compat/zipball/5da4d3c796c275c55f057af5a643ae297d96b4d8", - "reference": "5da4d3c796c275c55f057af5a643ae297d96b4d8", + "url": "https://api.github.com/repos/paragonie/random_compat/zipball/446fc9faa5c2a9ddf65eb7121c0af7e857295241", + "reference": "446fc9faa5c2a9ddf65eb7121c0af7e857295241", "shasum": "" }, "require": { @@ -2685,23 +3550,29 @@ "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", "keywords": [ "csprng", + "polyfill", "pseudorandom", "random" ], - "time": "2017-09-27T21:40:39+00:00" + "support": { + "email": "info@paragonie.com", + "issues": "https://github.com/paragonie/random_compat/issues", + "source": "https://github.com/paragonie/random_compat" + }, + "time": "2020-10-15T10:06:57+00:00" }, { "name": "pda/pheanstalk", - "version": "v3.1.0", + "version": "v3.2.1", "source": { "type": "git", "url": "https://github.com/pda/pheanstalk.git", - "reference": "430e77c551479aad0c6ada0450ee844cf656a18b" + "reference": "57b6e76f1b06ca798e739a8dee92c2dac04fd170" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/pda/pheanstalk/zipball/430e77c551479aad0c6ada0450ee844cf656a18b", - "reference": "430e77c551479aad0c6ada0450ee844cf656a18b", + "url": "https://api.github.com/repos/pda/pheanstalk/zipball/57b6e76f1b06ca798e739a8dee92c2dac04fd170", + "reference": "57b6e76f1b06ca798e739a8dee92c2dac04fd170", "shasum": "" }, "require": { @@ -2713,7 +3584,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "3.0-dev" + "dev-master": "3.1-dev" } }, "autoload": { @@ -2738,7 +3609,113 @@ "keywords": [ "beanstalkd" ], - "time": "2015-08-07T21:42:41+00:00" + "support": { + "issues": "https://github.com/pda/pheanstalk/issues", + "source": "https://github.com/pda/pheanstalk/tree/master" + }, + "time": "2018-09-19T12:16:28+00:00" + }, + { + "name": "phpdocumentor/reflection-common", + "version": "2.2.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/ReflectionCommon.git", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-2.x": "2.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jaap van Otterdijk", + "email": "opensource@ijaap.nl" + } + ], + "description": "Common reflection classes used by phpdocumentor to reflect the code structure", + "homepage": "http://www.phpdoc.org", + "keywords": [ + "FQSEN", + "phpDocumentor", + "phpdoc", + "reflection", + "static analysis" + ], + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues", + "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x" + }, + "time": "2020-06-27T09:03:43+00:00" + }, + { + "name": "phpdocumentor/type-resolver", + "version": "1.4.0", + "source": { + "type": "git", + "url": "https://github.com/phpDocumentor/TypeResolver.git", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "reference": "6a467b8989322d92aa1c8bf2bebcc6e5c2ba55c0", + "shasum": "" + }, + "require": { + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.0" + }, + "require-dev": { + "ext-tokenizer": "*" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-1.x": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "phpDocumentor\\Reflection\\": "src" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Mike van Riel", + "email": "me@mikevanriel.com" + } + ], + "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names", + "support": { + "issues": "https://github.com/phpDocumentor/TypeResolver/issues", + "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.4.0" + }, + "time": "2020-09-17T18:55:26+00:00" }, { "name": "poniverse/api", @@ -2787,26 +3764,31 @@ "laravel", "laravel4" ], + "support": { + "issues": "https://github.com/Poniverse/poniverse-php/issues", + "source": "https://github.com/Poniverse/poniverse-php/tree/rewrite" + }, "time": "2017-11-29T04:45:11+00:00" }, { "name": "predis/predis", - "version": "v1.1.1", + "version": "v1.1.6", "source": { "type": "git", - "url": "https://github.com/nrk/predis.git", - "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1" + "url": "https://github.com/predis/predis.git", + "reference": "9930e933c67446962997b05201c69c2319bf26de" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/nrk/predis/zipball/f0210e38881631afeafb56ab43405a92cafd9fd1", - "reference": "f0210e38881631afeafb56ab43405a92cafd9fd1", + "url": "https://api.github.com/repos/predis/predis/zipball/9930e933c67446962997b05201c69c2319bf26de", + "reference": "9930e933c67446962997b05201c69c2319bf26de", "shasum": "" }, "require": { "php": ">=5.3.9" }, "require-dev": { + "cweagans/composer-patches": "^1.6", "phpunit/phpunit": "~4.8" }, "suggest": { @@ -2814,6 +3796,18 @@ "ext-phpiredis": "Allows faster serialization and deserialization of the Redis protocol" }, "type": "library", + "extra": { + "composer-exit-on-patch-failure": true, + "patches": { + "phpunit/phpunit-mock-objects": { + "Fix PHP 7 and 8 compatibility": "./tests/phpunit_mock_objects.patch" + }, + "phpunit/phpunit": { + "Fix PHP 7 compatibility": "./tests/phpunit_php7.patch", + "Fix PHP 8 compatibility": "./tests/phpunit_php8.patch" + } + } + }, "autoload": { "psr-4": { "Predis\\": "src/" @@ -2827,17 +3821,33 @@ { "name": "Daniele Alessandri", "email": "suppakilla@gmail.com", - "homepage": "http://clorophilla.net" + "homepage": "http://clorophilla.net", + "role": "Creator & Maintainer" + }, + { + "name": "Till Krüss", + "homepage": "https://till.im", + "role": "Maintainer" } ], "description": "Flexible and feature-complete Redis client for PHP and HHVM", - "homepage": "http://github.com/nrk/predis", + "homepage": "http://github.com/predis/predis", "keywords": [ "nosql", "predis", "redis" ], - "time": "2016-06-16T16:22:20+00:00" + "support": { + "issues": "https://github.com/predis/predis/issues", + "source": "https://github.com/predis/predis/tree/v1.1.6" + }, + "funding": [ + { + "url": "https://github.com/sponsors/tillkruss", + "type": "github" + } + ], + "time": "2020-09-11T19:18:05+00:00" }, { "name": "psr/cache", @@ -2883,6 +3893,9 @@ "psr", "psr-6" ], + "support": { + "source": "https://github.com/php-fig/cache/tree/master" + }, "time": "2016-08-06T20:24:11+00:00" }, { @@ -2932,6 +3945,10 @@ "container-interop", "psr" ], + "support": { + "issues": "https://github.com/php-fig/container/issues", + "source": "https://github.com/php-fig/container/tree/master" + }, "time": "2017-02-14T16:28:37+00:00" }, { @@ -2982,20 +3999,23 @@ "request", "response" ], + "support": { + "source": "https://github.com/php-fig/http-message/tree/master" + }, "time": "2016-08-06T14:39:51+00:00" }, { "name": "psr/log", - "version": "1.0.2", + "version": "1.1.3", "source": { "type": "git", "url": "https://github.com/php-fig/log.git", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d" + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/log/zipball/4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", - "reference": "4ebe3a8bf773a19edfe0a84b6585ba3d401b724d", + "url": "https://api.github.com/repos/php-fig/log/zipball/0f73288fd15629204f9d42b7055f72dacbe811fc", + "reference": "0f73288fd15629204f9d42b7055f72dacbe811fc", "shasum": "" }, "require": { @@ -3004,7 +4024,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.1.x-dev" } }, "autoload": { @@ -3029,20 +4049,23 @@ "psr", "psr-3" ], - "time": "2016-10-10T12:19:37+00:00" + "support": { + "source": "https://github.com/php-fig/log/tree/1.1.3" + }, + "time": "2020-03-23T09:12:05+00:00" }, { "name": "psr/simple-cache", - "version": "1.0.0", + "version": "1.0.1", "source": { "type": "git", "url": "https://github.com/php-fig/simple-cache.git", - "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24" + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/753fa598e8f3b9966c886fe13f370baa45ef0e24", - "reference": "753fa598e8f3b9966c886fe13f370baa45ef0e24", + "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", + "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b", "shasum": "" }, "require": { @@ -3077,35 +4100,39 @@ "psr-16", "simple-cache" ], - "time": "2017-01-02T13:31:39+00:00" + "support": { + "source": "https://github.com/php-fig/simple-cache/tree/master" + }, + "time": "2017-10-23T01:57:42+00:00" }, { "name": "psy/psysh", - "version": "v0.8.15", + "version": "v0.9.12", "source": { "type": "git", "url": "https://github.com/bobthecow/psysh.git", - "reference": "b1d289c2cb03a2f8249912c53e96ced38f879926" + "reference": "90da7f37568aee36b116a030c5f99c915267edd4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/bobthecow/psysh/zipball/b1d289c2cb03a2f8249912c53e96ced38f879926", - "reference": "b1d289c2cb03a2f8249912c53e96ced38f879926", + "url": "https://api.github.com/repos/bobthecow/psysh/zipball/90da7f37568aee36b116a030c5f99c915267edd4", + "reference": "90da7f37568aee36b116a030c5f99c915267edd4", "shasum": "" }, "require": { - "dnoegel/php-xdg-base-dir": "0.1", - "jakub-onderka/php-console-highlighter": "0.3.*", - "nikic/php-parser": "~1.3|~2.0|~3.0", - "php": ">=5.3.9", - "symfony/console": "~2.3.10|^2.4.2|~3.0", - "symfony/var-dumper": "~2.7|~3.0" + "dnoegel/php-xdg-base-dir": "0.1.*", + "ext-json": "*", + "ext-tokenizer": "*", + "jakub-onderka/php-console-highlighter": "0.3.*|0.4.*", + "nikic/php-parser": "~1.3|~2.0|~3.0|~4.0", + "php": ">=5.4.0", + "symfony/console": "~2.3.10|^2.4.2|~3.0|~4.0|~5.0", + "symfony/var-dumper": "~2.7|~3.0|~4.0|~5.0" }, "require-dev": { - "friendsofphp/php-cs-fixer": "~1.11", - "hoa/console": "~3.16|~1.14", - "phpunit/phpunit": "^4.8.35|^5.4.3", - "symfony/finder": "~2.1|~3.0" + "bamarni/composer-bin-plugin": "^1.2", + "hoa/console": "~2.15|~3.16", + "phpunit/phpunit": "~4.8.35|~5.0|~6.0|~7.0" }, "suggest": { "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", @@ -3120,15 +4147,15 @@ "type": "library", "extra": { "branch-alias": { - "dev-develop": "0.8.x-dev" + "dev-develop": "0.9.x-dev" } }, "autoload": { "files": [ - "src/Psy/functions.php" + "src/functions.php" ], "psr-4": { - "Psy\\": "src/Psy/" + "Psy\\": "src/" } }, "notification-url": "https://packagist.org/downloads/", @@ -3150,48 +4177,98 @@ "interactive", "shell" ], - "time": "2017-11-16T14:29:51+00:00" + "support": { + "issues": "https://github.com/bobthecow/psysh/issues", + "source": "https://github.com/bobthecow/psysh/tree/v0.9.12" + }, + "time": "2019-12-06T14:19:43+00:00" }, { - "name": "ramsey/uuid", - "version": "3.7.1", + "name": "ralouphie/getallheaders", + "version": "3.0.3", "source": { "type": "git", - "url": "https://github.com/ramsey/uuid.git", - "reference": "45cffe822057a09e05f7bd09ec5fb88eeecd2334" + "url": "https://github.com/ralouphie/getallheaders.git", + "reference": "120b605dfeb996808c31b6477290a714d356e822" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/ramsey/uuid/zipball/45cffe822057a09e05f7bd09ec5fb88eeecd2334", - "reference": "45cffe822057a09e05f7bd09ec5fb88eeecd2334", + "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822", + "reference": "120b605dfeb996808c31b6477290a714d356e822", "shasum": "" }, "require": { - "paragonie/random_compat": "^1.0|^2.0", - "php": "^5.4 || ^7.0" + "php": ">=5.6" + }, + "require-dev": { + "php-coveralls/php-coveralls": "^2.1", + "phpunit/phpunit": "^5 || ^6.5" + }, + "type": "library", + "autoload": { + "files": [ + "src/getallheaders.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Ralph Khattar", + "email": "ralph.khattar@gmail.com" + } + ], + "description": "A polyfill for getallheaders.", + "support": { + "issues": "https://github.com/ralouphie/getallheaders/issues", + "source": "https://github.com/ralouphie/getallheaders/tree/develop" + }, + "time": "2019-03-08T08:55:37+00:00" + }, + { + "name": "ramsey/uuid", + "version": "3.9.3", + "source": { + "type": "git", + "url": "https://github.com/ramsey/uuid.git", + "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/ramsey/uuid/zipball/7e1633a6964b48589b142d60542f9ed31bd37a92", + "reference": "7e1633a6964b48589b142d60542f9ed31bd37a92", + "shasum": "" + }, + "require": { + "ext-json": "*", + "paragonie/random_compat": "^1 | ^2 | 9.99.99", + "php": "^5.4 | ^7 | ^8", + "symfony/polyfill-ctype": "^1.8" }, "replace": { "rhumsaa/uuid": "self.version" }, "require-dev": { - "apigen/apigen": "^4.1", - "codeception/aspect-mock": "^1.0 | ^2.0", - "doctrine/annotations": "~1.2.0", - "goaop/framework": "1.0.0-alpha.2 | ^1.0 | ^2.1", - "ircmaxell/random-lib": "^1.1", - "jakub-onderka/php-parallel-lint": "^0.9.0", - "mockery/mockery": "^0.9.4", + "codeception/aspect-mock": "^1 | ^2", + "doctrine/annotations": "^1.2", + "goaop/framework": "1.0.0-alpha.2 | ^1 | ^2.1", + "jakub-onderka/php-parallel-lint": "^1", + "mockery/mockery": "^0.9.11 | ^1", "moontoast/math": "^1.1", - "php-mock/php-mock-phpunit": "^0.3|^1.1", - "phpunit/phpunit": "^4.7|>=5.0 <5.4", - "satooshi/php-coveralls": "^0.6.1", - "squizlabs/php_codesniffer": "^2.3" + "paragonie/random-lib": "^2", + "php-mock/php-mock-phpunit": "^0.3 | ^1.1", + "phpunit/phpunit": "^4.8 | ^5.4 | ^6.5", + "squizlabs/php_codesniffer": "^3.5" }, "suggest": { + "ext-ctype": "Provides support for PHP Ctype functions", "ext-libsodium": "Provides the PECL libsodium extension for use with the SodiumRandomGenerator", + "ext-openssl": "Provides the OpenSSL extension for use with the OpenSslGenerator", "ext-uuid": "Provides the PECL UUID extension for use with the PeclUuidTimeGenerator and PeclUuidRandomGenerator", - "ircmaxell/random-lib": "Provides RandomLib for use with the RandomLibAdapter", "moontoast/math": "Provides support for converting UUID to 128-bit integer (in string form).", + "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter", "ramsey/uuid-console": "A console application for generating UUIDs with ramsey/uuid", "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type." }, @@ -3204,13 +4281,21 @@ "autoload": { "psr-4": { "Ramsey\\Uuid\\": "src/" - } + }, + "files": [ + "src/functions.php" + ] }, "notification-url": "https://packagist.org/downloads/", "license": [ "MIT" ], "authors": [ + { + "name": "Ben Ramsey", + "email": "ben@benramsey.com", + "homepage": "https://benramsey.com" + }, { "name": "Marijn Huizendveld", "email": "marijn.huizendveld@gmail.com" @@ -3218,11 +4303,6 @@ { "name": "Thibaud Fabre", "email": "thibaud@aztech.io" - }, - { - "name": "Ben Ramsey", - "email": "ben@benramsey.com", - "homepage": "https://benramsey.com" } ], "description": "Formerly rhumsaa/uuid. A PHP 5.4+ library for generating RFC 4122 version 1, 3, 4, and 5 universally unique identifiers (UUID).", @@ -3232,27 +4312,33 @@ "identifier", "uuid" ], - "time": "2017-09-22T20:46:04+00:00" + "support": { + "issues": "https://github.com/ramsey/uuid/issues", + "rss": "https://github.com/ramsey/uuid/releases.atom", + "source": "https://github.com/ramsey/uuid", + "wiki": "https://github.com/ramsey/uuid/wiki" + }, + "time": "2020-02-21T04:36:14+00:00" }, { "name": "react/promise", - "version": "v2.5.1", + "version": "v2.8.0", "source": { "type": "git", "url": "https://github.com/reactphp/promise.git", - "reference": "62785ae604c8d69725d693eb370e1d67e94c4053" + "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/reactphp/promise/zipball/62785ae604c8d69725d693eb370e1d67e94c4053", - "reference": "62785ae604c8d69725d693eb370e1d67e94c4053", + "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4", + "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4", "shasum": "" }, "require": { "php": ">=5.4.0" }, "require-dev": { - "phpunit/phpunit": "~4.8" + "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36" }, "type": "library", "autoload": { @@ -3278,7 +4364,122 @@ "promise", "promises" ], - "time": "2017-03-25T12:08:31+00:00" + "support": { + "issues": "https://github.com/reactphp/promise/issues", + "source": "https://github.com/reactphp/promise/tree/v2.8.0" + }, + "time": "2020-05-12T15:16:56+00:00" + }, + { + "name": "seld/jsonlint", + "version": "1.8.3", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/jsonlint.git", + "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57", + "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57", + "shasum": "" + }, + "require": { + "php": "^5.3 || ^7.0 || ^8.0" + }, + "require-dev": { + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0" + }, + "bin": [ + "bin/jsonlint" + ], + "type": "library", + "autoload": { + "psr-4": { + "Seld\\JsonLint\\": "src/Seld/JsonLint/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be", + "homepage": "http://seld.be" + } + ], + "description": "JSON Linter", + "keywords": [ + "json", + "linter", + "parser", + "validator" + ], + "support": { + "issues": "https://github.com/Seldaek/jsonlint/issues", + "source": "https://github.com/Seldaek/jsonlint/tree/1.8.3" + }, + "funding": [ + { + "url": "https://github.com/Seldaek", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/seld/jsonlint", + "type": "tidelift" + } + ], + "time": "2020-11-11T09:19:24+00:00" + }, + { + "name": "seld/phar-utils", + "version": "1.1.1", + "source": { + "type": "git", + "url": "https://github.com/Seldaek/phar-utils.git", + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796", + "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796", + "shasum": "" + }, + "require": { + "php": ">=5.3" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.x-dev" + } + }, + "autoload": { + "psr-4": { + "Seld\\PharUtils\\": "src/" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Jordi Boggiano", + "email": "j.boggiano@seld.be" + } + ], + "description": "PHAR file format utilities, for when PHP phars you up", + "keywords": [ + "phar" + ], + "support": { + "issues": "https://github.com/Seldaek/phar-utils/issues", + "source": "https://github.com/Seldaek/phar-utils/tree/master" + }, + "time": "2020-07-07T18:42:57+00:00" }, { "name": "spomky-labs/aes-key-wrap", @@ -3338,6 +4539,10 @@ "padding", "wrap" ], + "support": { + "issues": "https://github.com/Spomky-Labs/aes-key-wrap/issues", + "source": "https://github.com/Spomky-Labs/aes-key-wrap/tree/master" + }, "time": "2017-03-25T21:07:11+00:00" }, { @@ -3390,20 +4595,24 @@ "safe", "url" ], + "support": { + "issues": "https://github.com/Spomky-Labs/base64url/issues", + "source": "https://github.com/Spomky-Labs/base64url/tree/master" + }, "time": "2016-01-21T19:50:30+00:00" }, { "name": "spomky-labs/jose", - "version": "v6.1.6", + "version": "v6.1.7", "source": { "type": "git", "url": "https://github.com/Spomky-Labs/jose.git", - "reference": "c044dd9bac4a827ef837b81f124256c84a5b4c6e" + "reference": "108bde90e676cc45f079f958bae9b75ac9bc1788" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Spomky-Labs/jose/zipball/c044dd9bac4a827ef837b81f124256c84a5b4c6e", - "reference": "c044dd9bac4a827ef837b81f124256c84a5b4c6e", + "url": "https://api.github.com/repos/Spomky-Labs/jose/zipball/108bde90e676cc45f079f958bae9b75ac9bc1788", + "reference": "108bde90e676cc45f079f958bae9b75ac9bc1788", "shasum": "" }, "require": { @@ -3472,20 +4681,25 @@ "jwa", "jwt" ], - "time": "2017-10-06T06:25:14+00:00" + "support": { + "issues": "https://github.com/Spomky-Labs/jose/issues", + "source": "https://github.com/Spomky-Labs/jose/tree/v6.1" + }, + "abandoned": "web-token/jwt-framework", + "time": "2018-02-19T09:23:27+00:00" }, { "name": "spomky-labs/php-aes-gcm", - "version": "v1.2.0", + "version": "v1.2.1", "source": { "type": "git", "url": "https://github.com/Spomky-Labs/php-aes-gcm.git", - "reference": "b655bef0d4f0fa2f36c11c5122e284951e81961c" + "reference": "e3900f2eb29a98476ae94c25c5c4aebb32ebf338" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/Spomky-Labs/php-aes-gcm/zipball/b655bef0d4f0fa2f36c11c5122e284951e81961c", - "reference": "b655bef0d4f0fa2f36c11c5122e284951e81961c", + "url": "https://api.github.com/repos/Spomky-Labs/php-aes-gcm/zipball/e3900f2eb29a98476ae94c25c5c4aebb32ebf338", + "reference": "e3900f2eb29a98476ae94c25c5c4aebb32ebf338", "shasum": "" }, "require": { @@ -3534,34 +4748,44 @@ "aes", "gcm" ], - "time": "2016-11-22T21:11:11+00:00" + "support": { + "issues": "https://github.com/Spomky-Labs/php-aes-gcm/issues", + "source": "https://github.com/Spomky-Labs/php-aes-gcm/tree/v1.x" + }, + "time": "2018-11-07T14:39:44+00:00" }, { "name": "swiftmailer/swiftmailer", - "version": "v6.0.2", + "version": "v6.2.5", "source": { "type": "git", "url": "https://github.com/swiftmailer/swiftmailer.git", - "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc" + "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/412333372fb6c8ffb65496a2bbd7321af75733fc", - "reference": "412333372fb6c8ffb65496a2bbd7321af75733fc", + "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/698a6a9f54d7eb321274de3ad19863802c879fb7", + "reference": "698a6a9f54d7eb321274de3ad19863802c879fb7", "shasum": "" }, "require": { - "egulias/email-validator": "~2.0", - "php": ">=7.0.0" + "egulias/email-validator": "^2.0", + "php": ">=7.0.0", + "symfony/polyfill-iconv": "^1.0", + "symfony/polyfill-intl-idn": "^1.10", + "symfony/polyfill-mbstring": "^1.0" }, "require-dev": { - "mockery/mockery": "~0.9.1", - "symfony/phpunit-bridge": "~3.3@dev" + "mockery/mockery": "^1.0", + "symfony/phpunit-bridge": "^4.4|^5.0" + }, + "suggest": { + "ext-intl": "Needed to support internationalized email addresses" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "6.0-dev" + "dev-master": "6.2-dev" } }, "autoload": { @@ -3583,82 +4807,40 @@ } ], "description": "Swiftmailer, free feature-rich PHP mailer", - "homepage": "http://swiftmailer.symfony.com", + "homepage": "https://swiftmailer.symfony.com", "keywords": [ "email", "mail", "mailer" ], - "time": "2017-09-30T22:39:41+00:00" - }, - { - "name": "symfony/class-loader", - "version": "v3.4.0", - "source": { - "type": "git", - "url": "https://github.com/symfony/class-loader.git", - "reference": "e8d36a7b5568d232f5c3f8ef92665836b9f1e038" + "support": { + "issues": "https://github.com/swiftmailer/swiftmailer/issues", + "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.2.5" }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/symfony/class-loader/zipball/e8d36a7b5568d232f5c3f8ef92665836b9f1e038", - "reference": "e8d36a7b5568d232f5c3f8ef92665836b9f1e038", - "shasum": "" - }, - "require": { - "php": "^5.5.9|>=7.0.8" - }, - "require-dev": { - "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/polyfill-apcu": "~1.1" - }, - "suggest": { - "symfony/polyfill-apcu": "For using ApcClassLoader on HHVM" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, - "autoload": { - "psr-4": { - "Symfony\\Component\\ClassLoader\\": "" - }, - "exclude-from-classmap": [ - "/Tests/" - ] - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ + "funding": [ { - "name": "Fabien Potencier", - "email": "fabien@symfony.com" + "url": "https://github.com/fabpot", + "type": "github" }, { - "name": "Symfony Community", - "homepage": "https://symfony.com/contributors" + "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer", + "type": "tidelift" } ], - "description": "Symfony ClassLoader Component", - "homepage": "https://symfony.com", - "time": "2017-11-05T16:10:10+00:00" + "time": "2021-01-12T09:35:59+00:00" }, { "name": "symfony/console", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/console.git", - "reference": "9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0" + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/console/zipball/9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0", - "reference": "9468ad3fba3a5e1f0dc12a96e50e84cddb923cf0", + "url": "https://api.github.com/repos/symfony/console/zipball/a10b1da6fc93080c180bba7219b5ff5b7518fe81", + "reference": "a10b1da6fc93080c180bba7219b5ff5b7518fe81", "shasum": "" }, "require": { @@ -3670,6 +4852,9 @@ "symfony/dependency-injection": "<3.4", "symfony/process": "<3.3" }, + "provide": { + "psr/log-implementation": "1.0" + }, "require-dev": { "psr/log": "~1.0", "symfony/config": "~3.3|~4.0", @@ -3685,11 +4870,6 @@ "symfony/process": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Console\\": "" @@ -3714,31 +4894,43 @@ ], "description": "Symfony Console Component", "homepage": "https://symfony.com", - "time": "2017-11-29T13:28:14+00:00" + "support": { + "source": "https://github.com/symfony/console/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/css-selector", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/css-selector.git", - "reference": "7134b93e90ea7e7881fcb2da006d21b4c5f31908" + "reference": "da3d9da2ce0026771f5fe64cb332158f1bd2bc33" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/css-selector/zipball/7134b93e90ea7e7881fcb2da006d21b4c5f31908", - "reference": "7134b93e90ea7e7881fcb2da006d21b4c5f31908", + "url": "https://api.github.com/repos/symfony/css-selector/zipball/da3d9da2ce0026771f5fe64cb332158f1bd2bc33", + "reference": "da3d9da2ce0026771f5fe64cb332158f1bd2bc33", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\CssSelector\\": "" @@ -3752,14 +4944,14 @@ "MIT" ], "authors": [ - { - "name": "Jean-François Simon", - "email": "jeanfrancois.simon@sensiolabs.com" - }, { "name": "Fabien Potencier", "email": "fabien@symfony.com" }, + { + "name": "Jean-François Simon", + "email": "jeanfrancois.simon@sensiolabs.com" + }, { "name": "Symfony Community", "homepage": "https://symfony.com/contributors" @@ -3767,20 +4959,37 @@ ], "description": "Symfony CssSelector Component", "homepage": "https://symfony.com", - "time": "2017-11-05T16:10:10+00:00" + "support": { + "source": "https://github.com/symfony/css-selector/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/debug", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/debug.git", - "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd" + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/debug/zipball/fb2001e5d85f95d8b6ab94ae3be5d2672df128fd", - "reference": "fb2001e5d85f95d8b6ab94ae3be5d2672df128fd", + "url": "https://api.github.com/repos/symfony/debug/zipball/ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", + "reference": "ab42889de57fdfcfcc0759ab102e2fd4ea72dcae", "shasum": "" }, "require": { @@ -3794,11 +5003,6 @@ "symfony/http-kernel": "~2.8|~3.0|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Debug\\": "" @@ -3823,20 +5027,37 @@ ], "description": "Symfony Debug Component", "homepage": "https://symfony.com", - "time": "2017-11-21T09:01:46+00:00" + "support": { + "source": "https://github.com/symfony/debug/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/event-dispatcher", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/event-dispatcher.git", - "reference": "ca20b8f9ef149f40ff656d52965f240d85f7a8e4" + "reference": "31fde73757b6bad247c54597beef974919ec6860" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/ca20b8f9ef149f40ff656d52965f240d85f7a8e4", - "reference": "ca20b8f9ef149f40ff656d52965f240d85f7a8e4", + "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/31fde73757b6bad247c54597beef974919ec6860", + "reference": "31fde73757b6bad247c54597beef974919ec6860", "shasum": "" }, "require": { @@ -3848,6 +5069,7 @@ "require-dev": { "psr/log": "~1.0", "symfony/config": "~2.8|~3.0|~4.0", + "symfony/debug": "~3.4|~4.4", "symfony/dependency-injection": "~3.3|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/stopwatch": "~2.8|~3.0|~4.0" @@ -3857,11 +5079,6 @@ "symfony/http-kernel": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\EventDispatcher\\": "" @@ -3886,31 +5103,105 @@ ], "description": "Symfony EventDispatcher Component", "homepage": "https://symfony.com", - "time": "2017-11-09T14:14:31+00:00" + "support": { + "source": "https://github.com/symfony/event-dispatcher/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { - "name": "symfony/finder", - "version": "v3.4.0", + "name": "symfony/filesystem", + "version": "v5.2.3", "source": { "type": "git", - "url": "https://github.com/symfony/finder.git", - "reference": "dac8d7db537bac7ad8143eb11360a8c2231f251a" + "url": "https://github.com/symfony/filesystem.git", + "reference": "262d033b57c73e8b59cd6e68a45c528318b15038" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/finder/zipball/dac8d7db537bac7ad8143eb11360a8c2231f251a", - "reference": "dac8d7db537bac7ad8143eb11360a8c2231f251a", + "url": "https://api.github.com/repos/symfony/filesystem/zipball/262d033b57c73e8b59cd6e68a45c528318b15038", + "reference": "262d033b57c73e8b59cd6e68a45c528318b15038", + "shasum": "" + }, + "require": { + "php": ">=7.2.5", + "symfony/polyfill-ctype": "~1.8" + }, + "type": "library", + "autoload": { + "psr-4": { + "Symfony\\Component\\Filesystem\\": "" + }, + "exclude-from-classmap": [ + "/Tests/" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Fabien Potencier", + "email": "fabien@symfony.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Provides basic utilities for the filesystem", + "homepage": "https://symfony.com", + "support": { + "source": "https://github.com/symfony/filesystem/tree/v5.2.3" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-27T10:01:46+00:00" + }, + { + "name": "symfony/finder", + "version": "v3.4.47", + "source": { + "type": "git", + "url": "https://github.com/symfony/finder.git", + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/finder/zipball/b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", + "reference": "b6b6ad3db3edb1b4b1c1896b1975fb684994de6e", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Finder\\": "" @@ -3935,20 +5226,37 @@ ], "description": "Symfony Finder Component", "homepage": "https://symfony.com", - "time": "2017-11-05T16:10:10+00:00" + "support": { + "source": "https://github.com/symfony/finder/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-11-16T17:02:08+00:00" }, { "name": "symfony/http-foundation", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/http-foundation.git", - "reference": "d9625c8abb907e0ca2d7506afd7a719a572c766f" + "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d9625c8abb907e0ca2d7506afd7a719a572c766f", - "reference": "d9625c8abb907e0ca2d7506afd7a719a572c766f", + "url": "https://api.github.com/repos/symfony/http-foundation/zipball/b9885fcce6fe494201da4f70a9309770e9d13dc8", + "reference": "b9885fcce6fe494201da4f70a9309770e9d13dc8", "shasum": "" }, "require": { @@ -3960,11 +5268,6 @@ "symfony/expression-language": "~2.8|~3.0|~4.0" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpFoundation\\": "" @@ -3989,32 +5292,51 @@ ], "description": "Symfony HttpFoundation Component", "homepage": "https://symfony.com", - "time": "2017-11-30T14:56:21+00:00" + "support": { + "source": "https://github.com/symfony/http-foundation/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/http-kernel", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/http-kernel.git", - "reference": "2df856c9dd8a1e1f11439b12e58c474afc1aac0d" + "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/http-kernel/zipball/2df856c9dd8a1e1f11439b12e58c474afc1aac0d", - "reference": "2df856c9dd8a1e1f11439b12e58c474afc1aac0d", + "url": "https://api.github.com/repos/symfony/http-kernel/zipball/a98a4c30089e6a2d52a9fa236f718159b539f6f5", + "reference": "a98a4c30089e6a2d52a9fa236f718159b539f6f5", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8", "psr/log": "~1.0", - "symfony/debug": "~2.8|~3.0|~4.0", + "symfony/debug": "^3.3.3|~4.0", "symfony/event-dispatcher": "~2.8|~3.0|~4.0", - "symfony/http-foundation": "^3.3.11|~4.0" + "symfony/http-foundation": "~3.4.12|~4.0.12|^4.1.1", + "symfony/polyfill-ctype": "~1.8", + "symfony/polyfill-php56": "~1.8" }, "conflict": { "symfony/config": "<2.8", - "symfony/dependency-injection": "<3.4", + "symfony/dependency-injection": "<3.4.10|<4.0.10,>=4", "symfony/var-dumper": "<3.3", "twig/twig": "<1.34|<2.4,>=2" }, @@ -4028,7 +5350,7 @@ "symfony/config": "~2.8|~3.0|~4.0", "symfony/console": "~2.8|~3.0|~4.0", "symfony/css-selector": "~2.8|~3.0|~4.0", - "symfony/dependency-injection": "~3.4|~4.0", + "symfony/dependency-injection": "^3.4.10|^4.0.10", "symfony/dom-crawler": "~2.8|~3.0|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", @@ -4048,11 +5370,6 @@ "symfony/var-dumper": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\HttpKernel\\": "" @@ -4077,24 +5394,371 @@ ], "description": "Symfony HttpKernel Component", "homepage": "https://symfony.com", - "time": "2017-11-30T16:56:05+00:00" + "support": { + "source": "https://github.com/symfony/http-kernel/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-11-27T08:42:42+00:00" }, { - "name": "symfony/polyfill-mbstring", - "version": "v1.6.0", + "name": "symfony/polyfill-ctype", + "version": "v1.22.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-mbstring.git", - "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296" + "url": "https://github.com/symfony/polyfill-ctype.git", + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", - "reference": "2ec8b39c38cb16674bbf3fea2b6ce5bf117e1296", + "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/c6c942b1ac76c82448322025e084cadc56048b4e", + "reference": "c6c942b1ac76c82448322025e084cadc56048b4e", "shasum": "" }, "require": { - "php": ">=5.3.3" + "php": ">=7.1" + }, + "suggest": { + "ext-ctype": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Ctype\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Gert de Pagter", + "email": "BackEndTea@gmail.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for ctype functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "ctype", + "polyfill", + "portable" + ], + "support": { + "source": "https://github.com/symfony/polyfill-ctype/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T16:49:33+00:00" + }, + { + "name": "symfony/polyfill-iconv", + "version": "v1.22.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-iconv.git", + "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6", + "reference": "b34bfb8c4c22650ac080d2662ae3502e5f2f4ae6", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-iconv": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Iconv\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for the Iconv extension", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "iconv", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-iconv/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T16:49:33+00:00" + }, + { + "name": "symfony/polyfill-intl-idn", + "version": "v1.22.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-idn.git", + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", + "reference": "0eb8293dbbcd6ef6bf81404c9ce7d95bcdf34f44", + "shasum": "" + }, + "require": { + "php": ">=7.1", + "symfony/polyfill-intl-normalizer": "^1.10", + "symfony/polyfill-php72": "^1.10" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Idn\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Laurent Bassin", + "email": "laurent@bassin.info" + }, + { + "name": "Trevor Rowbotham", + "email": "trevor.rowbotham@pm.me" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "idn", + "intl", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T16:49:33+00:00" + }, + { + "name": "symfony/polyfill-intl-normalizer", + "version": "v1.22.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-intl-normalizer.git", + "reference": "6e971c891537eb617a00bb07a43d182a6915faba" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/6e971c891537eb617a00bb07a43d182a6915faba", + "reference": "6e971c891537eb617a00bb07a43d182a6915faba", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "suggest": { + "ext-intl": "For best performance" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Intl\\Normalizer\\": "" + }, + "files": [ + "bootstrap.php" + ], + "classmap": [ + "Resources/stubs" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill for intl's Normalizer class and related functions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "intl", + "normalizer", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T17:09:11+00:00" + }, + { + "name": "symfony/polyfill-mbstring", + "version": "v1.22.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-mbstring.git", + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", + "reference": "f377a3dd1fde44d37b9831d68dc8dea3ffd28e13", + "shasum": "" + }, + "require": { + "php": ">=7.1" }, "suggest": { "ext-mbstring": "For best performance" @@ -4102,7 +5766,11 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, "autoload": { @@ -4136,42 +5804,119 @@ "portable", "shim" ], - "time": "2017-10-11T12:05:26+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T16:49:33+00:00" }, { - "name": "symfony/polyfill-php70", - "version": "v1.6.0", + "name": "symfony/polyfill-php56", + "version": "v1.20.0", "source": { "type": "git", - "url": "https://github.com/symfony/polyfill-php70.git", - "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff" + "url": "https://github.com/symfony/polyfill-php56.git", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff", - "reference": "0442b9c0596610bd24ae7b5f0a6cdbbc16d9fcff", + "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", + "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675", "shasum": "" }, "require": { - "paragonie/random_compat": "~1.0|~2.0", - "php": ">=5.3.3" + "php": ">=7.1" }, - "type": "library", + "type": "metapackage", "extra": { "branch-alias": { - "dev-master": "1.6-dev" + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" } }, - "autoload": { - "psr-4": { - "Symfony\\Polyfill\\Php70\\": "" + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" }, - "files": [ - "bootstrap.php" - ], - "classmap": [ - "Resources/stubs" - ] + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php56/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" + }, + { + "name": "symfony/polyfill-php70", + "version": "v1.20.0", + "source": { + "type": "git", + "url": "https://github.com/symfony/polyfill-php70.git", + "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/polyfill-php70/zipball/5f03a781d984aae42cebd18e7912fa80f02ee644", + "reference": "5f03a781d984aae42cebd18e7912fa80f02ee644", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "metapackage", + "extra": { + "branch-alias": { + "dev-main": "1.20-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } }, "notification-url": "https://packagist.org/downloads/", "license": [ @@ -4195,31 +5940,119 @@ "portable", "shim" ], - "time": "2017-10-11T12:05:26+00:00" + "support": { + "source": "https://github.com/symfony/polyfill-php70/tree/v1.20.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-23T14:02:19+00:00" }, { - "name": "symfony/process", - "version": "v3.4.0", + "name": "symfony/polyfill-php72", + "version": "v1.22.0", "source": { "type": "git", - "url": "https://github.com/symfony/process.git", - "reference": "db25e810fd5e124085e3777257d0cf4ae533d0ea" + "url": "https://github.com/symfony/polyfill-php72.git", + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/process/zipball/db25e810fd5e124085e3777257d0cf4ae533d0ea", - "reference": "db25e810fd5e124085e3777257d0cf4ae533d0ea", + "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9", + "shasum": "" + }, + "require": { + "php": ">=7.1" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-main": "1.22-dev" + }, + "thanks": { + "name": "symfony/polyfill", + "url": "https://github.com/symfony/polyfill" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Polyfill\\Php72\\": "" + }, + "files": [ + "bootstrap.php" + ] + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions", + "homepage": "https://symfony.com", + "keywords": [ + "compatibility", + "polyfill", + "portable", + "shim" + ], + "support": { + "source": "https://github.com/symfony/polyfill-php72/tree/v1.22.0" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2021-01-07T16:49:33+00:00" + }, + { + "name": "symfony/process", + "version": "v3.4.47", + "source": { + "type": "git", + "url": "https://github.com/symfony/process.git", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/process/zipball/b8648cf1d5af12a44a51d07ef9bf980921f15fca", + "reference": "b8648cf1d5af12a44a51d07ef9bf980921f15fca", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Process\\": "" @@ -4244,35 +6077,51 @@ ], "description": "Symfony Process Component", "homepage": "https://symfony.com", - "time": "2017-11-22T12:18:49+00:00" + "support": { + "source": "https://github.com/symfony/process/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/routing", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/routing.git", - "reference": "d768aa5b25d98188bae3fe4ce3eb2924c97aafac" + "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/routing/zipball/d768aa5b25d98188bae3fe4ce3eb2924c97aafac", - "reference": "d768aa5b25d98188bae3fe4ce3eb2924c97aafac", + "url": "https://api.github.com/repos/symfony/routing/zipball/3e522ac69cadffd8131cc2b22157fa7662331a6c", + "reference": "3e522ac69cadffd8131cc2b22157fa7662331a6c", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8" }, "conflict": { - "symfony/config": "<2.8", + "symfony/config": "<3.3.1", "symfony/dependency-injection": "<3.3", "symfony/yaml": "<3.4" }, "require-dev": { "doctrine/annotations": "~1.0", - "doctrine/common": "~2.2", "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", + "symfony/config": "^3.3.1|~4.0", "symfony/dependency-injection": "~3.3|~4.0", "symfony/expression-language": "~2.8|~3.0|~4.0", "symfony/http-foundation": "~2.8|~3.0|~4.0", @@ -4281,17 +6130,11 @@ "suggest": { "doctrine/annotations": "For using the annotation loader", "symfony/config": "For using the all-in-one router or any loader", - "symfony/dependency-injection": "For loading routes from a service", "symfony/expression-language": "For using expression matching", "symfony/http-foundation": "For using a Symfony Request object", "symfony/yaml": "For using the YAML loader" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Routing\\": "" @@ -4322,48 +6165,73 @@ "uri", "url" ], - "time": "2017-11-24T14:13:49+00:00" + "support": { + "source": "https://github.com/symfony/routing/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/translation", - "version": "v3.4.0", + "version": "v4.3.11", "source": { "type": "git", "url": "https://github.com/symfony/translation.git", - "reference": "e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa" + "reference": "46e462be71935ae15eab531e4d491d801857f24c" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/translation/zipball/e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa", - "reference": "e05b0a5996ad7a35ba3a19ffad8b72c9daa64dfa", + "url": "https://api.github.com/repos/symfony/translation/zipball/46e462be71935ae15eab531e4d491d801857f24c", + "reference": "46e462be71935ae15eab531e4d491d801857f24c", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8", - "symfony/polyfill-mbstring": "~1.0" + "php": "^7.1.3", + "symfony/polyfill-mbstring": "~1.0", + "symfony/translation-contracts": "^1.1.6" }, "conflict": { - "symfony/config": "<2.8", + "symfony/config": "<3.4", "symfony/dependency-injection": "<3.4", "symfony/yaml": "<3.4" }, + "provide": { + "symfony/translation-implementation": "1.0" + }, "require-dev": { "psr/log": "~1.0", - "symfony/config": "~2.8|~3.0|~4.0", + "symfony/config": "~3.4|~4.0", + "symfony/console": "~3.4|~4.0", "symfony/dependency-injection": "~3.4|~4.0", "symfony/finder": "~2.8|~3.0|~4.0", - "symfony/intl": "^2.8.18|^3.2.5|~4.0", + "symfony/http-kernel": "~3.4|~4.0", + "symfony/intl": "~3.4|~4.0", + "symfony/service-contracts": "^1.1.2", + "symfony/var-dumper": "~3.4|~4.0", "symfony/yaml": "~3.4|~4.0" }, "suggest": { - "psr/log": "To use logging capability in translator", + "psr/log-implementation": "To use logging capability in translator", "symfony/config": "", "symfony/yaml": "" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "3.4-dev" + "dev-master": "4.3-dev" } }, "autoload": { @@ -4390,20 +6258,101 @@ ], "description": "Symfony Translation Component", "homepage": "https://symfony.com", - "time": "2017-11-27T14:23:00+00:00" + "support": { + "source": "https://github.com/symfony/translation/tree/4.3" + }, + "time": "2020-01-04T12:24:57+00:00" }, { - "name": "symfony/var-dumper", - "version": "v3.4.0", + "name": "symfony/translation-contracts", + "version": "v1.1.10", "source": { "type": "git", - "url": "https://github.com/symfony/var-dumper.git", - "reference": "ec650a975a8e04e0c114d35eab732981243db3a2" + "url": "https://github.com/symfony/translation-contracts.git", + "reference": "84180a25fad31e23bebd26ca09d89464f082cacc" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/var-dumper/zipball/ec650a975a8e04e0c114d35eab732981243db3a2", - "reference": "ec650a975a8e04e0c114d35eab732981243db3a2", + "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/84180a25fad31e23bebd26ca09d89464f082cacc", + "reference": "84180a25fad31e23bebd26ca09d89464f082cacc", + "shasum": "" + }, + "require": { + "php": ">=7.1.3" + }, + "suggest": { + "symfony/translation-implementation": "" + }, + "type": "library", + "extra": { + "branch-alias": { + "dev-master": "1.1-dev" + }, + "thanks": { + "name": "symfony/contracts", + "url": "https://github.com/symfony/contracts" + } + }, + "autoload": { + "psr-4": { + "Symfony\\Contracts\\Translation\\": "" + } + }, + "notification-url": "https://packagist.org/downloads/", + "license": [ + "MIT" + ], + "authors": [ + { + "name": "Nicolas Grekas", + "email": "p@tchwork.com" + }, + { + "name": "Symfony Community", + "homepage": "https://symfony.com/contributors" + } + ], + "description": "Generic abstractions related to translation", + "homepage": "https://symfony.com", + "keywords": [ + "abstractions", + "contracts", + "decoupling", + "interfaces", + "interoperability", + "standards" + ], + "support": { + "source": "https://github.com/symfony/translation-contracts/tree/v1.1.10" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-09-02T16:08:58+00:00" + }, + { + "name": "symfony/var-dumper", + "version": "v3.4.47", + "source": { + "type": "git", + "url": "https://github.com/symfony/var-dumper.git", + "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d" + }, + "dist": { + "type": "zip", + "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0719f6cf4633a38b2c1585140998579ce23b4b7d", + "reference": "0719f6cf4633a38b2c1585140998579ce23b4b7d", "shasum": "" }, "require": { @@ -4423,11 +6372,6 @@ "ext-symfony_debug": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "files": [ "Resources/functions/dump.php" @@ -4459,33 +6403,52 @@ "debug", "dump" ], - "time": "2017-11-30T14:59:23+00:00" + "support": { + "source": "https://github.com/symfony/var-dumper/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "tijsverkoyen/css-to-inline-styles", - "version": "2.2.0", + "version": "2.2.3", "source": { "type": "git", "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git", - "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b" + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", - "reference": "ab03919dfd85a74ae0372f8baf9f3c7d5c03b04b", + "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/b43b05cf43c1b6d849478965062b6ef73e223bb5", + "reference": "b43b05cf43c1b6d849478965062b6ef73e223bb5", "shasum": "" }, "require": { - "php": "^5.5 || ^7", - "symfony/css-selector": "^2.7|~3.0" + "ext-dom": "*", + "ext-libxml": "*", + "php": "^5.5 || ^7.0 || ^8.0", + "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0" }, "require-dev": { - "phpunit/phpunit": "~4.8|5.1.*" + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0.x-dev" + "dev-master": "2.2.x-dev" } }, "autoload": { @@ -4506,27 +6469,42 @@ ], "description": "CssToInlineStyles is a class that enables you to convert HTML-pages/files into HTML-pages/files with inline styles. This is very useful when you're sending emails.", "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles", - "time": "2016-09-20T12:50:39+00:00" + "support": { + "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues", + "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/2.2.3" + }, + "time": "2020-07-13T06:12:54+00:00" }, { "name": "venturecraft/revisionable", - "version": "1.28.0", + "version": "1.36.0", "source": { "type": "git", "url": "https://github.com/VentureCraft/revisionable.git", - "reference": "5a76d29b897d4864cef41c605e7e03258dd5d051" + "reference": "2c68e7a22ed10c4d27aad743c639d8c67b26d6cf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/5a76d29b897d4864cef41c605e7e03258dd5d051", - "reference": "5a76d29b897d4864cef41c605e7e03258dd5d051", + "url": "https://api.github.com/repos/VentureCraft/revisionable/zipball/2c68e7a22ed10c4d27aad743c639d8c67b26d6cf", + "reference": "2c68e7a22ed10c4d27aad743c639d8c67b26d6cf", "shasum": "" }, "require": { - "illuminate/support": "~4.0|~5.0|~5.1", - "php": ">=5.3.0" + "illuminate/support": "~4.0|~5.0|~5.1|^6.0|^7.0|^8.0", + "laravel/framework": "~5.4|^6.0|^7.0|^8.0", + "php": ">=5.4.0" + }, + "require-dev": { + "orchestra/testbench": "~3.0" }, "type": "library", + "extra": { + "laravel": { + "providers": [ + "Venturecraft\\Revisionable\\RevisionableServiceProvider" + ] + } + }, "autoload": { "classmap": [ "src/migrations" @@ -4548,38 +6526,50 @@ "description": "Keep a revision history for your models without thinking, created as a package for use with Laravel", "homepage": "http://github.com/venturecraft/revisionable", "keywords": [ + "Audit", "ardent", "history", "laravel", "model", "revision" ], - "time": "2016-08-02T02:32:00+00:00" + "support": { + "issues": "https://github.com/VentureCraft/revisionable/issues", + "source": "https://github.com/VentureCraft/revisionable" + }, + "time": "2020-09-09T23:21:40+00:00" }, { "name": "vlucas/phpdotenv", - "version": "v2.4.0", + "version": "v2.6.7", "source": { "type": "git", "url": "https://github.com/vlucas/phpdotenv.git", - "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c" + "reference": "b786088918a884258c9e3e27405c6a4cf2ee246e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", - "reference": "3cc116adbe4b11be5ec557bf1d24dc5e3a21d18c", + "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/b786088918a884258c9e3e27405c6a4cf2ee246e", + "reference": "b786088918a884258c9e3e27405c6a4cf2ee246e", "shasum": "" }, "require": { - "php": ">=5.3.9" + "php": "^5.3.9 || ^7.0 || ^8.0", + "symfony/polyfill-ctype": "^1.17" }, "require-dev": { - "phpunit/phpunit": "^4.8 || ^5.0" + "ext-filter": "*", + "ext-pcre": "*", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20" + }, + "suggest": { + "ext-filter": "Required to use the boolean validator.", + "ext-pcre": "Required to use most of the library." }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.4-dev" + "dev-master": "2.6-dev" } }, "autoload": { @@ -4589,13 +6579,18 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD-3-Clause-Attribution" + "BSD-3-Clause" ], "authors": [ + { + "name": "Graham Campbell", + "email": "graham@alt-three.com", + "homepage": "https://gjcampbell.co.uk/" + }, { "name": "Vance Lucas", "email": "vance@vancelucas.com", - "homepage": "http://www.vancelucas.com" + "homepage": "https://vancelucas.com/" } ], "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", @@ -4604,7 +6599,21 @@ "env", "environment" ], - "time": "2016-09-01T10:05:43+00:00" + "support": { + "issues": "https://github.com/vlucas/phpdotenv/issues", + "source": "https://github.com/vlucas/phpdotenv/tree/v2.6.7" + }, + "funding": [ + { + "url": "https://github.com/GrahamCampbell", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv", + "type": "tidelift" + } + ], + "time": "2021-01-20T14:39:13+00:00" }, { "name": "webpatser/laravel-uuid", @@ -4658,32 +6667,36 @@ "keywords": [ "UUID RFC4122" ], + "support": { + "issues": "https://github.com/webpatser/uuid/issues", + "source": "https://github.com/webpatser/uuid" + }, "time": "2017-09-10T21:34:32+00:00" } ], "packages-dev": [ { "name": "filp/whoops", - "version": "2.1.14", + "version": "2.9.2", "source": { "type": "git", "url": "https://github.com/filp/whoops.git", - "reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6" + "reference": "df7933820090489623ce0be5e85c7e693638e536" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/filp/whoops/zipball/c6081b8838686aa04f1e83ba7e91f78b7b2a23e6", - "reference": "c6081b8838686aa04f1e83ba7e91f78b7b2a23e6", + "url": "https://api.github.com/repos/filp/whoops/zipball/df7933820090489623ce0be5e85c7e693638e536", + "reference": "df7933820090489623ce0be5e85c7e693638e536", "shasum": "" }, "require": { - "php": "^5.5.9 || ^7.0", + "php": "^5.5.9 || ^7.0 || ^8.0", "psr/log": "^1.0.1" }, "require-dev": { - "mockery/mockery": "0.9.*", - "phpunit/phpunit": "^4.8.35 || ^5.7", - "symfony/var-dumper": "^2.6 || ^3.0" + "mockery/mockery": "^0.9 || ^1.0", + "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3", + "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0" }, "suggest": { "symfony/var-dumper": "Pretty print complex values better with var-dumper available", @@ -4692,7 +6705,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.7-dev" } }, "autoload": { @@ -4721,20 +6734,30 @@ "throwable", "whoops" ], - "time": "2017-11-23T18:22:44+00:00" + "support": { + "issues": "https://github.com/filp/whoops/issues", + "source": "https://github.com/filp/whoops/tree/2.9.2" + }, + "funding": [ + { + "url": "https://github.com/denis-sokolov", + "type": "github" + } + ], + "time": "2021-01-24T12:00:00+00:00" }, { "name": "fzaninotto/faker", - "version": "v1.7.1", + "version": "v1.9.2", "source": { "type": "git", "url": "https://github.com/fzaninotto/Faker.git", - "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d" + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", - "reference": "d3ed4cc37051c1ca52d22d76b437d14809fc7e0d", + "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e", + "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e", "shasum": "" }, "require": { @@ -4742,13 +6765,13 @@ }, "require-dev": { "ext-intl": "*", - "phpunit/phpunit": "^4.0 || ^5.0", - "squizlabs/php_codesniffer": "^1.5" + "phpunit/phpunit": "^4.8.35 || ^5.7", + "squizlabs/php_codesniffer": "^2.9.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.8-dev" + "dev-master": "1.9-dev" } }, "autoload": { @@ -4771,24 +6794,29 @@ "faker", "fixtures" ], - "time": "2017-08-15T16:48:10+00:00" + "support": { + "issues": "https://github.com/fzaninotto/Faker/issues", + "source": "https://github.com/fzaninotto/Faker/tree/v1.9.2" + }, + "abandoned": true, + "time": "2020-12-11T09:56:16+00:00" }, { "name": "hamcrest/hamcrest-php", - "version": "v2.0.0", + "version": "v2.0.1", "source": { "type": "git", "url": "https://github.com/hamcrest/hamcrest-php.git", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad" + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/776503d3a8e85d4f9a1148614f95b7a608b046ad", - "reference": "776503d3a8e85d4f9a1148614f95b7a608b046ad", + "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", + "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3", "shasum": "" }, "require": { - "php": "^5.3|^7.0" + "php": "^5.3|^7.0|^8.0" }, "replace": { "cordoval/hamcrest-php": "*", @@ -4796,14 +6824,13 @@ "kodova/hamcrest-php": "*" }, "require-dev": { - "phpunit/php-file-iterator": "1.3.3", - "phpunit/phpunit": "~4.0", - "satooshi/php-coveralls": "^1.0" + "phpunit/php-file-iterator": "^1.4 || ^2.0", + "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "2.0-dev" + "dev-master": "2.1-dev" } }, "autoload": { @@ -4813,13 +6840,17 @@ }, "notification-url": "https://packagist.org/downloads/", "license": [ - "BSD" + "BSD-3-Clause" ], "description": "This is the PHP port of Hamcrest Matchers", "keywords": [ "test" ], - "time": "2016-01-20T08:20:44+00:00" + "support": { + "issues": "https://github.com/hamcrest/hamcrest-php/issues", + "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1" + }, + "time": "2020-07-09T08:09:16+00:00" }, { "name": "laravel/browser-kit-testing", @@ -4867,34 +6898,38 @@ "laravel", "testing" ], + "support": { + "issues": "https://github.com/laravel/browser-kit-testing/issues", + "source": "https://github.com/laravel/browser-kit-testing/tree/master" + }, "time": "2017-06-21T11:44:53+00:00" }, { "name": "mockery/mockery", - "version": "1.0", + "version": "1.3.3", "source": { "type": "git", "url": "https://github.com/mockery/mockery.git", - "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38" + "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/mockery/mockery/zipball/1bac8c362b12f522fdd1f1fa3556284c91affa38", - "reference": "1bac8c362b12f522fdd1f1fa3556284c91affa38", + "url": "https://api.github.com/repos/mockery/mockery/zipball/60fa2f67f6e4d3634bb4a45ff3171fa52215800d", + "reference": "60fa2f67f6e4d3634bb4a45ff3171fa52215800d", "shasum": "" }, "require": { - "hamcrest/hamcrest-php": "~2.0", + "hamcrest/hamcrest-php": "^2.0.1", "lib-pcre": ">=7.0", "php": ">=5.6.0" }, "require-dev": { - "phpunit/phpunit": "~5.7|~6.1" + "phpunit/phpunit": "^5.7.10|^6.5|^7.5|^8.5|^9.3" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.0.x-dev" + "dev-master": "1.3.x-dev" } }, "autoload": { @@ -4918,8 +6953,8 @@ "homepage": "http://davedevelopment.co.uk" } ], - "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", - "homepage": "http://github.com/mockery/mockery", + "description": "Mockery is a simple yet flexible PHP mock object framework", + "homepage": "https://github.com/mockery/mockery", "keywords": [ "BDD", "TDD", @@ -4932,29 +6967,36 @@ "test double", "testing" ], - "time": "2017-10-06T16:20:43+00:00" + "support": { + "issues": "https://github.com/mockery/mockery/issues", + "source": "https://github.com/mockery/mockery/tree/1.3.3" + }, + "time": "2020-08-11T18:10:21+00:00" }, { "name": "myclabs/deep-copy", - "version": "1.7.0", + "version": "1.10.2", "source": { "type": "git", "url": "https://github.com/myclabs/DeepCopy.git", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e" + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", - "reference": "3b8a3a99ba1f6a3952ac2747d989303cbd6b7a3e", + "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220", + "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": "^7.1 || ^8.0" + }, + "replace": { + "myclabs/deep-copy": "self.version" }, "require-dev": { "doctrine/collections": "^1.0", "doctrine/common": "^2.6", - "phpunit/phpunit": "^4.1" + "phpunit/phpunit": "^7.1" }, "type": "library", "autoload": { @@ -4977,7 +7019,17 @@ "object", "object graph" ], - "time": "2017-10-19T19:58:43+00:00" + "support": { + "issues": "https://github.com/myclabs/DeepCopy/issues", + "source": "https://github.com/myclabs/DeepCopy/tree/1.10.2" + }, + "funding": [ + { + "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy", + "type": "tidelift" + } + ], + "time": "2020-11-13T09:40:50+00:00" }, { "name": "nategood/httpful", @@ -5027,6 +7079,10 @@ "rest", "restful" ], + "support": { + "issues": "https://github.com/nategood/httpful/issues", + "source": "https://github.com/nategood/httpful/tree/v0.2.20" + }, "time": "2015-10-26T16:11:30+00:00" }, { @@ -5082,6 +7138,10 @@ } ], "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)", + "support": { + "issues": "https://github.com/phar-io/manifest/issues", + "source": "https://github.com/phar-io/manifest/tree/master" + }, "time": "2017-03-05T18:14:27+00:00" }, { @@ -5129,98 +7189,45 @@ } ], "description": "Library for handling version information and constraints", + "support": { + "issues": "https://github.com/phar-io/version/issues", + "source": "https://github.com/phar-io/version/tree/master" + }, "time": "2017-03-05T17:38:23+00:00" }, - { - "name": "phpdocumentor/reflection-common", - "version": "1.0.1", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/ReflectionCommon.git", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6" - }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", - "reference": "21bdeb5f65d7ebf9f43b1b25d404f87deab5bfb6", - "shasum": "" - }, - "require": { - "php": ">=5.5" - }, - "require-dev": { - "phpunit/phpunit": "^4.6" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Jaap van Otterdijk", - "email": "opensource@ijaap.nl" - } - ], - "description": "Common reflection classes used by phpdocumentor to reflect the code structure", - "homepage": "http://www.phpdoc.org", - "keywords": [ - "FQSEN", - "phpDocumentor", - "phpdoc", - "reflection", - "static analysis" - ], - "time": "2017-09-11T18:02:19+00:00" - }, { "name": "phpdocumentor/reflection-docblock", - "version": "4.2.0", + "version": "5.2.2", "source": { "type": "git", "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", - "reference": "66465776cfc249844bde6d117abff1d22e06c2da" + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/66465776cfc249844bde6d117abff1d22e06c2da", - "reference": "66465776cfc249844bde6d117abff1d22e06c2da", + "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/069a785b2141f5bcf49f3e353548dc1cce6df556", + "reference": "069a785b2141f5bcf49f3e353548dc1cce6df556", "shasum": "" }, "require": { - "php": "^7.0", - "phpdocumentor/reflection-common": "^1.0.0", - "phpdocumentor/type-resolver": "^0.4.0", - "webmozart/assert": "^1.0" + "ext-filter": "*", + "php": "^7.2 || ^8.0", + "phpdocumentor/reflection-common": "^2.2", + "phpdocumentor/type-resolver": "^1.3", + "webmozart/assert": "^1.9.1" }, "require-dev": { - "doctrine/instantiator": "~1.0.5", - "mockery/mockery": "^1.0", - "phpunit/phpunit": "^6.4" + "mockery/mockery": "~1.3.2" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "4.x-dev" + "dev-master": "5.x-dev" } }, "autoload": { "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] + "phpDocumentor\\Reflection\\": "src" } }, "notification-url": "https://packagist.org/downloads/", @@ -5231,57 +7238,18 @@ { "name": "Mike van Riel", "email": "me@mikevanriel.com" + }, + { + "name": "Jaap van Otterdijk", + "email": "account@ijaap.nl" } ], "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.", - "time": "2017-11-27T17:38:31+00:00" - }, - { - "name": "phpdocumentor/type-resolver", - "version": "0.4.0", - "source": { - "type": "git", - "url": "https://github.com/phpDocumentor/TypeResolver.git", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7" + "support": { + "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues", + "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/master" }, - "dist": { - "type": "zip", - "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/9c977708995954784726e25d0cd1dddf4e65b0f7", - "reference": "9c977708995954784726e25d0cd1dddf4e65b0f7", - "shasum": "" - }, - "require": { - "php": "^5.5 || ^7.0", - "phpdocumentor/reflection-common": "^1.0" - }, - "require-dev": { - "mockery/mockery": "^0.9.4", - "phpunit/phpunit": "^5.2||^4.8.24" - }, - "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.0.x-dev" - } - }, - "autoload": { - "psr-4": { - "phpDocumentor\\Reflection\\": [ - "src/" - ] - } - }, - "notification-url": "https://packagist.org/downloads/", - "license": [ - "MIT" - ], - "authors": [ - { - "name": "Mike van Riel", - "email": "me@mikevanriel.com" - } - ], - "time": "2017-07-14T14:27:02+00:00" + "time": "2020-09-03T19:13:55+00:00" }, { "name": "phpspec/php-diff", @@ -5310,11 +7278,13 @@ "authors": [ { "name": "Chris Boulton", - "homepage": "http://github.com/chrisboulton", - "role": "Original developer" + "homepage": "http://github.com/chrisboulton" } ], "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).", + "support": { + "source": "https://github.com/phpspec/php-diff/tree/v1.0.2" + }, "time": "2013-11-01T13:02:21+00:00" }, { @@ -5393,42 +7363,46 @@ "testing", "tests" ], + "support": { + "issues": "https://github.com/phpspec/phpspec/issues", + "source": "https://github.com/phpspec/phpspec/tree/2.5" + }, "time": "2017-07-29T17:19:38+00:00" }, { "name": "phpspec/prophecy", - "version": "1.7.3", + "version": "v1.10.3", "source": { "type": "git", "url": "https://github.com/phpspec/prophecy.git", - "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf" + "reference": "451c3cd1418cf640de218914901e51b064abb093" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/phpspec/prophecy/zipball/e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", - "reference": "e4ed002c67da8eceb0eb8ddb8b3847bb53c5c2bf", + "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093", + "reference": "451c3cd1418cf640de218914901e51b064abb093", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.2", "php": "^5.3|^7.0", - "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0", - "sebastian/comparator": "^1.1|^2.0", - "sebastian/recursion-context": "^1.0|^2.0|^3.0" + "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0", + "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0", + "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0" }, "require-dev": { - "phpspec/phpspec": "^2.5|^3.2", - "phpunit/phpunit": "^4.8.35 || ^5.7" + "phpspec/phpspec": "^2.5 || ^3.2", + "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1" }, "type": "library", "extra": { "branch-alias": { - "dev-master": "1.7.x-dev" + "dev-master": "1.10.x-dev" } }, "autoload": { - "psr-0": { - "Prophecy\\": "src/" + "psr-4": { + "Prophecy\\": "src/Prophecy" } }, "notification-url": "https://packagist.org/downloads/", @@ -5456,20 +7430,24 @@ "spy", "stub" ], - "time": "2017-11-24T13:59:53+00:00" + "support": { + "issues": "https://github.com/phpspec/prophecy/issues", + "source": "https://github.com/phpspec/prophecy/tree/v1.10.3" + }, + "time": "2020-03-05T15:02:03+00:00" }, { "name": "phpunit/php-code-coverage", - "version": "5.2.4", + "version": "5.3.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/php-code-coverage.git", - "reference": "033ec97498cf530cc1be4199264cad568b19be26" + "reference": "c89677919c5dd6d3b3852f230a663118762218ac" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/033ec97498cf530cc1be4199264cad568b19be26", - "reference": "033ec97498cf530cc1be4199264cad568b19be26", + "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/c89677919c5dd6d3b3852f230a663118762218ac", + "reference": "c89677919c5dd6d3b3852f230a663118762218ac", "shasum": "" }, "require": { @@ -5485,7 +7463,6 @@ "theseer/tokenizer": "^1.1" }, "require-dev": { - "ext-xdebug": "^2.5", "phpunit/phpunit": "^6.0" }, "suggest": { @@ -5494,7 +7471,7 @@ "type": "library", "extra": { "branch-alias": { - "dev-master": "5.2.x-dev" + "dev-master": "5.3.x-dev" } }, "autoload": { @@ -5509,7 +7486,7 @@ "authors": [ { "name": "Sebastian Bergmann", - "email": "sb@sebastian-bergmann.de", + "email": "sebastian@phpunit.de", "role": "lead" } ], @@ -5520,7 +7497,11 @@ "testing", "xunit" ], - "time": "2017-11-27T09:00:30+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues", + "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/5.3" + }, + "time": "2018-04-06T15:36:58+00:00" }, { "name": "phpunit/php-file-iterator", @@ -5567,6 +7548,11 @@ "filesystem", "iterator" ], + "support": { + "irc": "irc://irc.freenode.net/phpunit", + "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues", + "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/1.4.5" + }, "time": "2017-11-27T13:52:08+00:00" }, { @@ -5608,6 +7594,10 @@ "keywords": [ "template" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-text-template/issues", + "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1" + }, "time": "2015-06-21T13:50:34+00:00" }, { @@ -5657,6 +7647,10 @@ "keywords": [ "timer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-timer/issues", + "source": "https://github.com/sebastianbergmann/php-timer/tree/master" + }, "time": "2017-02-26T11:10:40+00:00" }, { @@ -5706,20 +7700,25 @@ "keywords": [ "tokenizer" ], + "support": { + "issues": "https://github.com/sebastianbergmann/php-token-stream/issues", + "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master" + }, + "abandoned": true, "time": "2017-11-27T05:48:46+00:00" }, { "name": "phpunit/phpunit", - "version": "6.5.2", + "version": "6.5.14", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit.git", - "reference": "24b708f2fd725bcef1c8153b366043381aa324f2" + "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/24b708f2fd725bcef1c8153b366043381aa324f2", - "reference": "24b708f2fd725bcef1c8153b366043381aa324f2", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/bac23fe7ff13dbdb461481f706f0e9fe746334b7", + "reference": "bac23fe7ff13dbdb461481f706f0e9fe746334b7", "shasum": "" }, "require": { @@ -5733,11 +7732,11 @@ "phar-io/version": "^1.0", "php": "^7.0", "phpspec/prophecy": "^1.7", - "phpunit/php-code-coverage": "^5.2.3", + "phpunit/php-code-coverage": "^5.3", "phpunit/php-file-iterator": "^1.4.3", "phpunit/php-text-template": "^1.2.1", "phpunit/php-timer": "^1.0.9", - "phpunit/phpunit-mock-objects": "^5.0.4", + "phpunit/phpunit-mock-objects": "^5.0.9", "sebastian/comparator": "^2.1", "sebastian/diff": "^2.0", "sebastian/environment": "^3.1", @@ -5790,33 +7789,37 @@ "testing", "xunit" ], - "time": "2017-12-02T05:36:24+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit/issues", + "source": "https://github.com/sebastianbergmann/phpunit/tree/6.5.14" + }, + "time": "2019-02-01T05:22:47+00:00" }, { "name": "phpunit/phpunit-mock-objects", - "version": "5.0.4", + "version": "5.0.10", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", - "reference": "16b50f4167e5e85e81ca8a3dd105d0a5fd32009a" + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/16b50f4167e5e85e81ca8a3dd105d0a5fd32009a", - "reference": "16b50f4167e5e85e81ca8a3dd105d0a5fd32009a", + "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/cd1cf05c553ecfec36b170070573e540b67d3f1f", + "reference": "cd1cf05c553ecfec36b170070573e540b67d3f1f", "shasum": "" }, "require": { "doctrine/instantiator": "^1.0.5", "php": "^7.0", "phpunit/php-text-template": "^1.2.1", - "sebastian/exporter": "^3.0" + "sebastian/exporter": "^3.1" }, "conflict": { "phpunit/phpunit": "<6.0" }, "require-dev": { - "phpunit/phpunit": "^6.5" + "phpunit/phpunit": "^6.5.11" }, "suggest": { "ext-soap": "*" @@ -5849,27 +7852,32 @@ "mock", "xunit" ], - "time": "2017-12-02T05:31:19+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/phpunit-mock-objects/issues", + "source": "https://github.com/sebastianbergmann/phpunit-mock-objects/tree/5.0.10" + }, + "abandoned": true, + "time": "2018-08-09T05:50:03+00:00" }, { "name": "sebastian/code-unit-reverse-lookup", - "version": "1.0.1", + "version": "1.0.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18" + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", - "reference": "4419fcdb5eabb9caa61a27c7a1db532a6b55dd18", + "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619", + "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619", "shasum": "" }, "require": { - "php": "^5.6 || ^7.0" + "php": ">=5.6" }, "require-dev": { - "phpunit/phpunit": "^5.7 || ^6.0" + "phpunit/phpunit": "^8.5" }, "type": "library", "extra": { @@ -5894,25 +7902,35 @@ ], "description": "Looks up which function or method a line of code belongs to", "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/", - "time": "2017-03-04T06:30:41+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues", + "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T08:15:22+00:00" }, { "name": "sebastian/comparator", - "version": "2.1.0", + "version": "2.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/comparator.git", - "reference": "1174d9018191e93cb9d719edec01257fc05f8158" + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1174d9018191e93cb9d719edec01257fc05f8158", - "reference": "1174d9018191e93cb9d719edec01257fc05f8158", + "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/34369daee48eafb2651bea869b4b15d75ccc35f9", + "reference": "34369daee48eafb2651bea869b4b15d75ccc35f9", "shasum": "" }, "require": { "php": "^7.0", - "sebastian/diff": "^2.0", + "sebastian/diff": "^2.0 || ^3.0", "sebastian/exporter": "^3.1" }, "require-dev": { @@ -5958,7 +7976,11 @@ "compare", "equality" ], - "time": "2017-11-03T07:16:52+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/comparator/issues", + "source": "https://github.com/sebastianbergmann/comparator/tree/master" + }, + "time": "2018-02-01T13:46:46+00:00" }, { "name": "sebastian/diff", @@ -6010,6 +8032,10 @@ "keywords": [ "diff" ], + "support": { + "issues": "https://github.com/sebastianbergmann/diff/issues", + "source": "https://github.com/sebastianbergmann/diff/tree/master" + }, "time": "2017-08-03T08:09:46+00:00" }, { @@ -6060,24 +8086,28 @@ "environment", "hhvm" ], + "support": { + "issues": "https://github.com/sebastianbergmann/environment/issues", + "source": "https://github.com/sebastianbergmann/environment/tree/master" + }, "time": "2017-07-01T08:51:00+00:00" }, { "name": "sebastian/exporter", - "version": "3.1.0", + "version": "3.1.3", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/exporter.git", - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937" + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/234199f4528de6d12aaa58b612e98f7d36adb937", - "reference": "234199f4528de6d12aaa58b612e98f7d36adb937", + "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e", + "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/recursion-context": "^3.0" }, "require-dev": { @@ -6100,6 +8130,10 @@ "BSD-3-Clause" ], "authors": [ + { + "name": "Sebastian Bergmann", + "email": "sebastian@phpunit.de" + }, { "name": "Jeff Welch", "email": "whatthejeff@gmail.com" @@ -6108,17 +8142,13 @@ "name": "Volker Dusch", "email": "github@wallbash.com" }, - { - "name": "Bernhard Schussek", - "email": "bschussek@2bepublished.at" - }, - { - "name": "Sebastian Bergmann", - "email": "sebastian@phpunit.de" - }, { "name": "Adam Harvey", "email": "aharvey@php.net" + }, + { + "name": "Bernhard Schussek", + "email": "bschussek@gmail.com" } ], "description": "Provides the functionality to export PHP variables for visualization", @@ -6127,7 +8157,17 @@ "export", "exporter" ], - "time": "2017-04-03T13:19:02+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/exporter/issues", + "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.3" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:47:53+00:00" }, { "name": "sebastian/global-state", @@ -6178,24 +8218,28 @@ "keywords": [ "global state" ], + "support": { + "issues": "https://github.com/sebastianbergmann/global-state/issues", + "source": "https://github.com/sebastianbergmann/global-state/tree/2.0.0" + }, "time": "2017-04-27T15:39:26+00:00" }, { "name": "sebastian/object-enumerator", - "version": "3.0.3", + "version": "3.0.4", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-enumerator.git", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5" + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/7cfd9e65d11ffb5af41198476395774d4c8a84c5", - "reference": "7cfd9e65d11ffb5af41198476395774d4c8a84c5", + "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", + "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2", "shasum": "" }, "require": { - "php": "^7.0", + "php": ">=7.0", "sebastian/object-reflector": "^1.1.1", "sebastian/recursion-context": "^3.0" }, @@ -6225,24 +8269,34 @@ ], "description": "Traverses array structures and object graphs to enumerate all referenced objects", "homepage": "https://github.com/sebastianbergmann/object-enumerator/", - "time": "2017-08-03T12:35:26+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-enumerator/issues", + "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.4" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:40:27+00:00" }, { "name": "sebastian/object-reflector", - "version": "1.1.1", + "version": "1.1.2", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/object-reflector.git", - "reference": "773f97c67f28de00d397be301821b06708fca0be" + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/773f97c67f28de00d397be301821b06708fca0be", - "reference": "773f97c67f28de00d397be301821b06708fca0be", + "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", + "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -6270,24 +8324,34 @@ ], "description": "Allows reflection of object attributes, including inherited and non-public ones", "homepage": "https://github.com/sebastianbergmann/object-reflector/", - "time": "2017-03-29T09:07:27+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/object-reflector/issues", + "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.2" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:37:18+00:00" }, { "name": "sebastian/recursion-context", - "version": "3.0.0", + "version": "3.0.1", "source": { "type": "git", "url": "https://github.com/sebastianbergmann/recursion-context.git", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8" + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", - "reference": "5b0cd723502bac3b006cbf3dbf7a1e3fcefe4fa8", + "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb", + "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb", "shasum": "" }, "require": { - "php": "^7.0" + "php": ">=7.0" }, "require-dev": { "phpunit/phpunit": "^6.0" @@ -6308,14 +8372,14 @@ "BSD-3-Clause" ], "authors": [ - { - "name": "Jeff Welch", - "email": "whatthejeff@gmail.com" - }, { "name": "Sebastian Bergmann", "email": "sebastian@phpunit.de" }, + { + "name": "Jeff Welch", + "email": "whatthejeff@gmail.com" + }, { "name": "Adam Harvey", "email": "aharvey@php.net" @@ -6323,7 +8387,17 @@ ], "description": "Provides functionality to recursively process PHP variables", "homepage": "http://www.github.com/sebastianbergmann/recursion-context", - "time": "2017-03-03T06:23:57+00:00" + "support": { + "issues": "https://github.com/sebastianbergmann/recursion-context/issues", + "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.1" + }, + "funding": [ + { + "url": "https://github.com/sebastianbergmann", + "type": "github" + } + ], + "time": "2020-11-30T07:34:24+00:00" }, { "name": "sebastian/resource-operations", @@ -6365,6 +8439,10 @@ ], "description": "Provides a list of PHP built-in functions that operate on resources", "homepage": "https://www.github.com/sebastianbergmann/resource-operations", + "support": { + "issues": "https://github.com/sebastianbergmann/resource-operations/issues", + "source": "https://github.com/sebastianbergmann/resource-operations/tree/master" + }, "time": "2015-07-28T20:34:47+00:00" }, { @@ -6408,24 +8486,29 @@ ], "description": "Library that helps with managing the version number of Git-hosted PHP projects", "homepage": "https://github.com/sebastianbergmann/version", + "support": { + "issues": "https://github.com/sebastianbergmann/version/issues", + "source": "https://github.com/sebastianbergmann/version/tree/master" + }, "time": "2016-10-03T07:35:21+00:00" }, { "name": "symfony/dom-crawler", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/dom-crawler.git", - "reference": "7bf68716e400997a291ad42c9f9fe7972e6656d2" + "reference": "ef97bcfbae5b384b4ca6c8d57b617722f15241a6" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7bf68716e400997a291ad42c9f9fe7972e6656d2", - "reference": "7bf68716e400997a291ad42c9f9fe7972e6656d2", + "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/ef97bcfbae5b384b4ca6c8d57b617722f15241a6", + "reference": "ef97bcfbae5b384b4ca6c8d57b617722f15241a6", "shasum": "" }, "require": { "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8", "symfony/polyfill-mbstring": "~1.0" }, "require-dev": { @@ -6435,11 +8518,6 @@ "symfony/css-selector": "" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\DomCrawler\\": "" @@ -6464,24 +8542,42 @@ ], "description": "Symfony DomCrawler Component", "homepage": "https://symfony.com", - "time": "2017-11-05T16:10:10+00:00" + "support": { + "source": "https://github.com/symfony/dom-crawler/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "symfony/yaml", - "version": "v3.4.0", + "version": "v3.4.47", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "b3d0c9c11be3831b84825967dc6b52b5a7b84e04" + "reference": "88289caa3c166321883f67fe5130188ebbb47094" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/b3d0c9c11be3831b84825967dc6b52b5a7b84e04", - "reference": "b3d0c9c11be3831b84825967dc6b52b5a7b84e04", + "url": "https://api.github.com/repos/symfony/yaml/zipball/88289caa3c166321883f67fe5130188ebbb47094", + "reference": "88289caa3c166321883f67fe5130188ebbb47094", "shasum": "" }, "require": { - "php": "^5.5.9|>=7.0.8" + "php": "^5.5.9|>=7.0.8", + "symfony/polyfill-ctype": "~1.8" }, "conflict": { "symfony/console": "<3.4" @@ -6493,11 +8589,6 @@ "symfony/console": "For validating YAML files using the lint command" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "3.4-dev" - } - }, "autoload": { "psr-4": { "Symfony\\Component\\Yaml\\": "" @@ -6522,27 +8613,44 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2017-11-29T13:28:14+00:00" + "support": { + "source": "https://github.com/symfony/yaml/tree/v3.4.47" + }, + "funding": [ + { + "url": "https://symfony.com/sponsor", + "type": "custom" + }, + { + "url": "https://github.com/fabpot", + "type": "github" + }, + { + "url": "https://tidelift.com/funding/github/packagist/symfony/symfony", + "type": "tidelift" + } + ], + "time": "2020-10-24T10:57:07+00:00" }, { "name": "theseer/tokenizer", - "version": "1.1.0", + "version": "1.2.0", "source": { "type": "git", "url": "https://github.com/theseer/tokenizer.git", - "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b" + "reference": "75a63c33a8577608444246075ea0af0d052e452a" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/theseer/tokenizer/zipball/cb2f008f3f05af2893a87208fe6a6c4985483f8b", - "reference": "cb2f008f3f05af2893a87208fe6a6c4985483f8b", + "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a", + "reference": "75a63c33a8577608444246075ea0af0d052e452a", "shasum": "" }, "require": { "ext-dom": "*", "ext-tokenizer": "*", "ext-xmlwriter": "*", - "php": "^7.0" + "php": "^7.2 || ^8.0" }, "type": "library", "autoload": { @@ -6562,35 +8670,44 @@ } ], "description": "A small library for converting tokenized PHP source code into XML and potentially other formats", - "time": "2017-04-07T12:08:54+00:00" + "support": { + "issues": "https://github.com/theseer/tokenizer/issues", + "source": "https://github.com/theseer/tokenizer/tree/master" + }, + "funding": [ + { + "url": "https://github.com/theseer", + "type": "github" + } + ], + "time": "2020-07-12T23:59:07+00:00" }, { "name": "webmozart/assert", - "version": "1.2.0", + "version": "1.9.1", "source": { "type": "git", - "url": "https://github.com/webmozart/assert.git", - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f" + "url": "https://github.com/webmozarts/assert.git", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/webmozart/assert/zipball/2db61e59ff05fe5126d152bd0655c9ea113e550f", - "reference": "2db61e59ff05fe5126d152bd0655c9ea113e550f", + "url": "https://api.github.com/repos/webmozarts/assert/zipball/bafc69caeb4d49c39fd0779086c03a3738cbb389", + "reference": "bafc69caeb4d49c39fd0779086c03a3738cbb389", "shasum": "" }, "require": { - "php": "^5.3.3 || ^7.0" + "php": "^5.3.3 || ^7.0 || ^8.0", + "symfony/polyfill-ctype": "^1.8" + }, + "conflict": { + "phpstan/phpstan": "<0.12.20", + "vimeo/psalm": "<3.9.1" }, "require-dev": { - "phpunit/phpunit": "^4.6", - "sebastian/version": "^1.0.1" + "phpunit/phpunit": "^4.8.36 || ^7.5.13" }, "type": "library", - "extra": { - "branch-alias": { - "dev-master": "1.3-dev" - } - }, "autoload": { "psr-4": { "Webmozart\\Assert\\": "src/" @@ -6612,7 +8729,11 @@ "check", "validate" ], - "time": "2016-11-23T20:04:58+00:00" + "support": { + "issues": "https://github.com/webmozarts/assert/issues", + "source": "https://github.com/webmozarts/assert/tree/1.9.1" + }, + "time": "2020-07-08T17:02:28+00:00" } ], "aliases": [], @@ -6625,5 +8746,6 @@ "platform": { "php": ">=7.0.1" }, - "platform-dev": [] + "platform-dev": [], + "plugin-api-version": "2.0.0" } diff --git a/config/app.php b/config/app.php index 842564fa..4f9232cd 100644 --- a/config/app.php +++ b/config/app.php @@ -158,12 +158,12 @@ return [ * Application Service Providers... */ Barryvdh\Debugbar\ServiceProvider::class, - Poniverse\Ponyfm\Providers\AppServiceProvider::class, - // Poniverse\Ponyfm\Providers\BroadcastServiceProvider::class, - Poniverse\Ponyfm\Providers\EventServiceProvider::class, - Poniverse\Ponyfm\Providers\RouteServiceProvider::class, - Poniverse\Ponyfm\Providers\AuthServiceProvider::class, - Poniverse\Ponyfm\Providers\NotificationServiceProvider::class, + App\Providers\AppServiceProvider::class, + // App\Providers\BroadcastServiceProvider::class, + App\Providers\EventServiceProvider::class, + App\Providers\RouteServiceProvider::class, + App\Providers\AuthServiceProvider::class, + App\Providers\NotificationServiceProvider::class, Intouch\LaravelNewrelic\NewrelicServiceProvider::class, Cviebrock\LaravelElasticsearch\ServiceProvider::class, @@ -218,7 +218,7 @@ return [ 'Elasticsearch' => Cviebrock\LaravelElasticsearch\Facade::class, 'Newrelic' => Intouch\LaravelNewrelic\Facades\Newrelic::class, - 'Notification' => Poniverse\Ponyfm\Facades\Notification::class, + 'Notification' => App\Facades\Notification::class, ], diff --git a/config/auth.php b/config/auth.php index b7e51c66..eeaec2f6 100644 --- a/config/auth.php +++ b/config/auth.php @@ -61,7 +61,7 @@ return [ 'providers' => [ 'users' => [ 'driver' => 'eloquent', - 'model' => \Poniverse\Ponyfm\Models\User::class, + 'model' => App\Models\User::class, ], // 'users' => [ // 'driver' => 'database', diff --git a/config/services.php b/config/services.php index 86654415..85dd29ca 100644 --- a/config/services.php +++ b/config/services.php @@ -30,7 +30,7 @@ return [ ], 'stripe' => [ - 'model' => \Poniverse\Ponyfm\Models\User::class, + 'model' => App\Models\User::class, 'key' => env('STRIPE_KEY'), 'secret' => env('STRIPE_SECRET'), ], diff --git a/database/factories/ModelFactory.php b/database/factories/ModelFactory.php index 6cfae92e..94e413bc 100644 --- a/database/factories/ModelFactory.php +++ b/database/factories/ModelFactory.php @@ -29,9 +29,9 @@ | */ -use Poniverse\Ponyfm\Models\User; +use App\Models\User; -$factory->define(Poniverse\Ponyfm\Models\User::class, function (\Faker\Generator $faker) { +$factory->define(App\Models\User::class, function (\Faker\Generator $faker) { return [ 'username' => $faker->userName, 'display_name' => $faker->userName, @@ -45,7 +45,7 @@ $factory->define(Poniverse\Ponyfm\Models\User::class, function (\Faker\Generator ]; }); -$factory->define(\Poniverse\Ponyfm\Models\Track::class, function(\Faker\Generator $faker) { +$factory->define(\App\Models\Track::class, function(\Faker\Generator $faker) { $user = factory(User::class)->create(); return [ @@ -53,7 +53,7 @@ $factory->define(\Poniverse\Ponyfm\Models\Track::class, function(\Faker\Generato 'hash' => $faker->md5, 'title' => $faker->sentence(5), 'slug' => $faker->slug, - 'track_type_id' => \Poniverse\Ponyfm\Models\TrackType::UNCLASSIFIED_TRACK, + 'track_type_id' => \App\Models\TrackType::UNCLASSIFIED_TRACK, 'track_number' => null, 'description' => $faker->paragraph(5), 'lyrics' => $faker->paragraph(5), @@ -66,7 +66,7 @@ $factory->define(\Poniverse\Ponyfm\Models\Track::class, function(\Faker\Generato ]; }); -$factory->define(\Poniverse\Ponyfm\Models\Genre::class, function(\Faker\Generator $faker) { +$factory->define(\App\Models\Genre::class, function(\Faker\Generator $faker) { return [ 'name' => $faker->word, 'slug' => $faker->slug, @@ -90,7 +90,7 @@ $factory->define(\Poniverse\Ponyfm\Models\Genre::class, function(\Faker\Generato * @property string $updated_at * @property \Carbon\Carbon $deleted_at */ -$factory->define(\Poniverse\Ponyfm\Models\Album::class, function(\Faker\Generator $faker) { +$factory->define(\App\Models\Album::class, function(\Faker\Generator $faker) { return [ 'title' => $faker->sentence(5), 'slug' => $faker->slug, diff --git a/database/legacy_migrations/2013_09_23_031316_create_track_hashes.php b/database/legacy_migrations/2013_09_23_031316_create_track_hashes.php index 175cae64..8c0a42e8 100644 --- a/database/legacy_migrations/2013_09_23_031316_create_track_hashes.php +++ b/database/legacy_migrations/2013_09_23_031316_create_track_hashes.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use Illuminate\Database\Migrations\Migration; class CreateTrackHashes extends Migration diff --git a/database/legacy_migrations/2014_05_28_071738_update_track_hash.php b/database/legacy_migrations/2014_05_28_071738_update_track_hash.php index 5425e557..c099a1f5 100644 --- a/database/legacy_migrations/2014_05_28_071738_update_track_hash.php +++ b/database/legacy_migrations/2014_05_28_071738_update_track_hash.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use Illuminate\Database\Migrations\Migration; class UpdateTrackHash extends Migration diff --git a/database/legacy_migrations/2015_05_25_011121_create_track_files_table.php b/database/legacy_migrations/2015_05_25_011121_create_track_files_table.php index 549c9466..3a91f689 100644 --- a/database/legacy_migrations/2015_05_25_011121_create_track_files_table.php +++ b/database/legacy_migrations/2015_05_25_011121_create_track_files_table.php @@ -18,7 +18,7 @@ * along with this program. If not, see . */ -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; use Illuminate\Database\Migrations\Migration; diff --git a/database/legacy_migrations/2015_10_28_162655_AddTrackFilesForDeletedTracks.php b/database/legacy_migrations/2015_10_28_162655_AddTrackFilesForDeletedTracks.php index 119f35f2..de2aacb6 100644 --- a/database/legacy_migrations/2015_10_28_162655_AddTrackFilesForDeletedTracks.php +++ b/database/legacy_migrations/2015_10_28_162655_AddTrackFilesForDeletedTracks.php @@ -20,7 +20,7 @@ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; -use Poniverse\Ponyfm\Models\Track; +use App\Models\Track; class AddTrackFilesForDeletedTracks extends Migration { diff --git a/database/legacy_migrations/2016_01_23_062640_EnforceUniqueTracksInPlaylists.php b/database/legacy_migrations/2016_01_23_062640_EnforceUniqueTracksInPlaylists.php index 20e22d8b..0d035586 100644 --- a/database/legacy_migrations/2016_01_23_062640_EnforceUniqueTracksInPlaylists.php +++ b/database/legacy_migrations/2016_01_23_062640_EnforceUniqueTracksInPlaylists.php @@ -20,7 +20,7 @@ use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; -use Poniverse\Ponyfm\Models\Playlist; +use App\Models\Playlist; class EnforceUniqueTracksInPlaylists extends Migration { diff --git a/database/migrations/2016_12_30_193250_EnableEmailNotifications.php b/database/migrations/2016_12_30_193250_EnableEmailNotifications.php index 4c78e2ec..0ff298a0 100644 --- a/database/migrations/2016_12_30_193250_EnableEmailNotifications.php +++ b/database/migrations/2016_12_30_193250_EnableEmailNotifications.php @@ -22,7 +22,7 @@ use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; -use Poniverse\Ponyfm\Models\User; +use App\Models\User; class EnableEmailNotifications extends Migration { /** diff --git a/phpspec.yml b/phpspec.yml index 3f0070aa..8be1dc14 100644 --- a/phpspec.yml +++ b/phpspec.yml @@ -1,5 +1,5 @@ suites: main: - namespace: Poniverse\Ponyfm - psr4_prefix: Poniverse\Ponyfm - src_path: app \ No newline at end of file + namespace: App + psr4_prefix: App + src_path: app diff --git a/resources/views/shared/_app_layout.blade.php b/resources/views/shared/_app_layout.blade.php index e4f186fe..7c503448 100644 --- a/resources/views/shared/_app_layout.blade.php +++ b/resources/views/shared/_app_layout.blade.php @@ -56,7 +56,7 @@ @if (Auth::check())