├── public
├── favicon.ico
├── robots.txt
├── googleb47f0721f1d4845a.html
├── light-logo.png
├── css
│ └── jumbotron.css
├── .htaccess
└── index.php
├── database
├── seeds
│ ├── .gitkeep
│ └── DatabaseSeeder.php
├── .gitignore
├── migrations
│ ├── .gitkeep
│ ├── 2016_10_25_021745_add_is_admin.php
│ ├── 2016_09_20_002119_create_teams_table.php
│ ├── 2016_09_20_003938_create_game_team_table.php
│ ├── 2016_09_20_002055_create_games_table.php
│ ├── 2014_10_12_100000_create_password_resets_table.php
│ ├── 2016_10_03_205920_add_listener_status.php
│ ├── 2014_10_12_000000_create_users_table.php
│ ├── 2017_09_27_041228_change_game_code_field.php
│ └── 2016_10_02_215453_create_jobs_table.php
└── factories
│ └── ModelFactory.php
├── resources
├── views
│ ├── vendor
│ │ ├── .gitkeep
│ │ ├── mail
│ │ │ ├── markdown
│ │ │ │ ├── panel.blade.php
│ │ │ │ ├── table.blade.php
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── promotion.blade.php
│ │ │ │ ├── subcopy.blade.php
│ │ │ │ ├── button.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ ├── promotion
│ │ │ │ │ └── button.blade.php
│ │ │ │ ├── layout.blade.php
│ │ │ │ └── message.blade.php
│ │ │ └── html
│ │ │ │ ├── table.blade.php
│ │ │ │ ├── header.blade.php
│ │ │ │ ├── subcopy.blade.php
│ │ │ │ ├── promotion.blade.php
│ │ │ │ ├── footer.blade.php
│ │ │ │ ├── panel.blade.php
│ │ │ │ ├── promotion
│ │ │ │ └── button.blade.php
│ │ │ │ ├── message.blade.php
│ │ │ │ ├── button.blade.php
│ │ │ │ ├── layout.blade.php
│ │ │ │ └── themes
│ │ │ │ └── default.css
│ │ ├── pagination
│ │ │ ├── simple-default.blade.php
│ │ │ ├── simple-bootstrap-4.blade.php
│ │ │ ├── default.blade.php
│ │ │ └── bootstrap-4.blade.php
│ │ └── notifications
│ │ │ └── email.blade.php
│ ├── admin
│ │ ├── landing.blade.php
│ │ ├── partials
│ │ │ ├── nav.blade.php
│ │ │ └── header
│ │ │ │ └── header.blade.php
│ │ ├── game-status
│ │ │ └── game-status.blade.php
│ │ ├── layouts
│ │ │ └── admin.blade.php
│ │ └── layout
│ │ │ └── admin.blade.php
│ ├── errors
│ │ └── 503.twig
│ ├── partials
│ │ └── header
│ │ │ └── header.blade.php
│ ├── welcome.blade.php
│ ├── auth
│ │ ├── passwords
│ │ │ ├── email.blade.php
│ │ │ └── reset.blade.php
│ │ ├── login.blade.php
│ │ └── register.blade.php
│ └── layouts
│ │ └── main.blade.php
├── lang
│ └── en
│ │ ├── pagination.php
│ │ ├── auth.php
│ │ ├── passwords.php
│ │ └── validation.php
└── assets
│ ├── js
│ ├── app.js
│ ├── components
│ │ └── Example.vue
│ └── bootstrap.js
│ └── sass
│ ├── variables.scss
│ └── app.scss
├── bootstrap
├── cache
│ └── .gitignore
├── autoload.php
└── app.php
├── storage
├── logs
│ └── .gitignore
├── app
│ ├── public
│ │ └── .gitignore
│ └── .gitignore
└── framework
│ ├── cache
│ └── .gitignore
│ ├── views
│ └── .gitignore
│ ├── sessions
│ └── .gitignore
│ └── .gitignore
├── .gitattributes
├── .idea
├── copyright
│ └── profiles_settings.xml
├── blade.xml
├── modules.xml
├── goalfeed.local.iml
└── misc.xml
├── app
├── Services
│ ├── GameService.php
│ ├── BaseService.php
│ └── TeamService.php
├── Http
│ ├── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── VerifyCsrfToken.php
│ │ ├── Admin.php
│ │ └── RedirectIfAuthenticated.php
│ ├── Controllers
│ │ ├── Controller.php
│ │ ├── InfoController.php
│ │ ├── Auth
│ │ │ ├── ResetPasswordController.php
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ └── RegisterController.php
│ │ └── AdminController.php
│ └── Kernel.php
├── EngineMiscFunctions.php
├── Providers
│ ├── BroadcastServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── EventServiceProvider.php
│ ├── AppServiceProvider.php
│ └── RouteServiceProvider.php
├── Events
│ └── Goal.php
├── Console
│ ├── Commands
│ │ ├── sendTestEvent.php
│ │ ├── scheduleListeners.php
│ │ ├── ListenerSafetyNet.php
│ │ ├── GetGamesForDate.php
│ │ ├── getGamesForDate.php
│ │ └── GameListener.php
│ └── Kernel.php
├── Message.php
├── Team.php
├── Jobs
│ └── MessageSender.php
├── Game.php
├── Exceptions
│ └── Handler.php
└── User.php
├── tests
├── ExampleTest.php
└── TestCase.php
├── package.json
├── routes
├── console.php
├── api.php
└── web.php
├── gulpfile.js
├── .env.example
├── server.php
├── readme.md
├── phpunit.xml
├── config
├── compile.php
├── services.php
├── view.php
├── broadcasting.php
├── filesystems.php
├── queue.php
├── cache.php
├── auth.php
├── database.php
├── mail.php
├── ide-helper.php
├── session.php
├── twigbridge.php
├── bugsnag.php
└── app.php
├── .gitignore
├── composer.json
└── artisan
/public/favicon.ico:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/bootstrap/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/logs/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/storage/app/public/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/app/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !public/
3 | !.gitignore
4 |
--------------------------------------------------------------------------------
/storage/framework/cache/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/views/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/storage/framework/sessions/.gitignore:
--------------------------------------------------------------------------------
1 | *
2 | !.gitignore
3 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/panel.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/table.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/footer.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/promotion.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/subcopy.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/button.blade.php:
--------------------------------------------------------------------------------
1 | {{ $slot }}: {{ $url }}
2 |
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/header.blade.php:
--------------------------------------------------------------------------------
1 | [{{ $slot }}]({{ $url }})
2 |
--------------------------------------------------------------------------------
/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 |
--------------------------------------------------------------------------------
/public/googleb47f0721f1d4845a.html:
--------------------------------------------------------------------------------
1 | google-site-verification: googleb47f0721f1d4845a.html
--------------------------------------------------------------------------------
/resources/views/vendor/mail/markdown/promotion/button.blade.php:
--------------------------------------------------------------------------------
1 | [{{ $slot }}]({{ $url }})
2 |
--------------------------------------------------------------------------------
/public/light-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/cviebrock/goalfeed/master/public/light-logo.png
--------------------------------------------------------------------------------
/.idea/copyright/profiles_settings.xml:
--------------------------------------------------------------------------------
1 |
| 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
| 4 | {{ Illuminate\Mail\Markdown::parse($slot) }} 5 | | 6 |
| 6 | {{ Illuminate\Mail\Markdown::parse($slot) }} 7 | | 8 |
4 |
|
12 |
4 |
|
12 |
4 |
|
18 |
8 | Goalfeed provides nearly instant notifications every time a goal is scored in the NHL.
13 |Currently, we offer an extension for Google Chrome to trigger a goal-light light sequence for your Philips Hue lights.
14 |15 | Check us out in the Chrome Store! 16 |
17 |Goalfeed is the fastest NHL trigger source for your Philips Hue lights.
27 |We're working to add support for additional sports and leagues as well as clients for other platforms!
31 || Gamecode | 11 |Start Time (Central Time) | 12 |Teams | 13 |Listener Status | 14 |
|---|---|---|---|
| {{$game->game_code}} | 20 |{{$game->readableStartTime()}} | 21 |
22 |
23 |
|
29 | {{$game->listener_status}} 30 | @if($game->listener_status == 'idle' || $game->listener_status == 'done' ) 31 | Start Listener 32 | @endif 33 | |
34 |
29 |
|
51 |
136 | | 'Form' => [
137 | | 'is_safe' => [
138 | | 'open'
139 | | ]
140 | | ]
141 | |
142 | |
143 | | The values of the `is_safe` array must match the called method on the facade
144 | | in order to be marked as safe.
145 | |
146 | */
147 | 'facades' => [],
148 |
149 | /*
150 | |--------------------------------------------------------------------------
151 | | Functions
152 | |--------------------------------------------------------------------------
153 | |
154 | | Available functions. Access like `{{ secure_url(...) }}`.
155 | |
156 | | Each function can take an optional array of options. These options are
157 | | passed directly to `Twig_SimpleFunction`.
158 | |
159 | | So for example, to mark a function as safe you can do the following:
160 | |
161 | |
162 | | 'link_to' => [
163 | | 'is_safe' => ['html']
164 | | ]
165 | |
166 | |
167 | | The options array also takes a `callback` that allows you to name the
168 | | function differently in your Twig templates than what it's actually called.
169 | |
170 | |
171 | | 'link' => [
172 | | 'callback' => 'link_to'
173 | | ]
174 | |
175 | |
176 | */
177 | 'functions' => [
178 | 'elixir',
179 | 'head',
180 | 'last',
181 | 'mix',
182 | ],
183 |
184 | /*
185 | |--------------------------------------------------------------------------
186 | | Filters
187 | |--------------------------------------------------------------------------
188 | |
189 | | Available filters. Access like `{{ variable|filter }}`.
190 | |
191 | | Each filter can take an optional array of options. These options are
192 | | passed directly to `Twig_SimpleFilter`.
193 | |
194 | | So for example, to mark a filter as safe you can do the following:
195 | |
196 | |
197 | | 'studly_case' => [
198 | | 'is_safe' => ['html']
199 | | ]
200 | |
201 | |
202 | | The options array also takes a `callback` that allows you to name the
203 | | filter differently in your Twig templates than what is actually called.
204 | |
205 | |
206 | | 'snake' => [
207 | | 'callback' => 'snake_case'
208 | | ]
209 | |
210 | |
211 | */
212 | 'filters' => [
213 | 'get' => 'data_get',
214 | ],
215 | ],
216 | ];
217 |
--------------------------------------------------------------------------------
/config/bugsnag.php:
--------------------------------------------------------------------------------
1 | env('BUGSNAG_API_KEY', ''),
18 |
19 | /*
20 | |--------------------------------------------------------------------------
21 | | App Type
22 | |--------------------------------------------------------------------------
23 | |
24 | | Set the type of application executing the current code.
25 | |
26 | */
27 |
28 | 'app_type' => env('BUGSNAG_APP_TYPE'),
29 |
30 | /*
31 | |--------------------------------------------------------------------------
32 | | App Version
33 | |--------------------------------------------------------------------------
34 | |
35 | | Set the version of application executing the current code.
36 | |
37 | */
38 |
39 | 'app_version' => env('BUGSNAG_APP_VERSION'),
40 |
41 | /*
42 | |--------------------------------------------------------------------------
43 | | Batch Sending
44 | |--------------------------------------------------------------------------
45 | |
46 | | Set to true to send the errors through to Bugsnag when the PHP process
47 | | shuts down, in order to prevent your app waiting on HTTP requests.
48 | |
49 | | Setting this to false will mean the we send an HTTP request straight away
50 | | for each error.
51 | |
52 | */
53 |
54 | 'batch_sending' => env('BUGSNAG_BATCH_SENDING'),
55 |
56 | /*
57 | |--------------------------------------------------------------------------
58 | | Endpoint
59 | |--------------------------------------------------------------------------
60 | |
61 | | Set what server the Bugsnag notifier should send errors to. By default
62 | | this is set to 'https://notify.bugsnag.com', but for Bugsnag Enterprise
63 | | this should be the URL to your Bugsnag instance.
64 | |
65 | */
66 |
67 | 'endpoint' => env('BUGSNAG_ENDPOINT'),
68 |
69 | /*
70 | |--------------------------------------------------------------------------
71 | | Filters
72 | |--------------------------------------------------------------------------
73 | |
74 | | Use this if you want to ensure you don't send sensitive data such as
75 | | passwords, and credit card numbers to our servers. Any keys which
76 | | contain these strings will be filtered.
77 | |
78 | */
79 |
80 | 'filters' => empty(env('BUGSNAG_FILTERS')) ? ['password'] : explode(',', str_replace(' ', '', env('BUGSNAG_FILTERS'))),
81 |
82 | /*
83 | |--------------------------------------------------------------------------
84 | | Hostname
85 | |--------------------------------------------------------------------------
86 | |
87 | | You can set the hostname of your server to something specific for you to
88 | | identify it by if needed.
89 | |
90 | */
91 |
92 | 'hostname' => env('BUGSNAG_HOSTNAME'),
93 |
94 | /*
95 | |--------------------------------------------------------------------------
96 | | Proxy
97 | |--------------------------------------------------------------------------
98 | |
99 | | This is where you can set the proxy settings you'd like us to use when
100 | | communicating with Bugsnag when reporting errors.
101 | |
102 | */
103 |
104 | 'proxy' => array_filter([
105 | 'http' => env('HTTP_PROXY'),
106 | 'https' => env('HTTPS_PROXY'),
107 | 'no' => empty(env('NO_PROXY')) ? null : explode(',', str_replace(' ', '', env('NO_PROXY'))),
108 | ]),
109 |
110 | /*
111 | |--------------------------------------------------------------------------
112 | | Project Root
113 | |--------------------------------------------------------------------------
114 | |
115 | | Bugsnag marks stacktrace lines as in-project if they come from files
116 | | inside your “project root”. You can set this here.
117 | |
118 | | If this is not set, we will automatically try to detect it.
119 | |
120 | */
121 |
122 | 'project_root' => env('BUGSNAG_PROJECT_ROOT'),
123 |
124 | /*
125 | |--------------------------------------------------------------------------
126 | | Strip Path
127 | |--------------------------------------------------------------------------
128 | |
129 | | You can set a strip path to have it also trimmed from the start of any
130 | | filepath in your stacktraces.
131 | |
132 | | If this is not set, we will automatically try to detect it.
133 | |
134 | */
135 |
136 | 'strip_path' => env('BUGSNAG_STRIP_PATH'),
137 |
138 | /*
139 | |--------------------------------------------------------------------------
140 | | Query
141 | |--------------------------------------------------------------------------
142 | |
143 | | Enable this if you'd like us to automatically record all queries executed
144 | | as breadcrumbs.
145 | |
146 | */
147 |
148 | 'query' => env('BUGSNAG_QUERY', true),
149 |
150 | /*
151 | |--------------------------------------------------------------------------
152 | | Bindings
153 | |--------------------------------------------------------------------------
154 | |
155 | | Enable this if you'd like us to include the query bindings in our query
156 | | breadcrumbs.
157 | |
158 | */
159 |
160 | 'bindings' => env('BUGSNAG_QUERY_BINDINGS', false),
161 |
162 | /*
163 | |--------------------------------------------------------------------------
164 | | Release Stage
165 | |--------------------------------------------------------------------------
166 | |
167 | | Set the release stage to use when sending notifications to Bugsnag.
168 | |
169 | | Leaving this unset will default to using the application environment.
170 | |
171 | */
172 |
173 | 'release_stage' => env('BUGSNAG_RELEASE_STAGE'),
174 |
175 | /*
176 | |--------------------------------------------------------------------------
177 | | Notify Release Stages
178 | |--------------------------------------------------------------------------
179 | |
180 | | Set which release stages should send notifications to Bugsnag.
181 | |
182 | */
183 |
184 | 'notify_release_stages' => empty(env('BUGSNAG_NOTIFY_RELEASE_STAGES')) ? null : explode(',', str_replace(' ', '', env('BUGSNAG_NOTIFY_RELEASE_STAGES'))),
185 |
186 | /*
187 | |--------------------------------------------------------------------------
188 | | Send Code
189 | |--------------------------------------------------------------------------
190 | |
191 | | Bugsnag automatically sends a small snippet of the code that crashed to
192 | | help you diagnose even faster from within your dashboard. If you don’t
193 | | want to send this snippet, then set this to false.
194 | |
195 | */
196 |
197 | 'send_code' => env('BUGSNAG_SEND_CODE', true),
198 |
199 | /*
200 | |--------------------------------------------------------------------------
201 | | Callbacks
202 | |--------------------------------------------------------------------------
203 | |
204 | | Enable this if you'd like us to enable our default set of notification
205 | | callbacks. These add things like the cookie information and session
206 | | details to the error to be sent to Bugsnag.
207 | |
208 | | If you'd like to add your own callbacks, you can call the
209 | | Bugsnag::registerCallback method from the boot method of your app
210 | | service provider.
211 | |
212 | */
213 |
214 | 'callbacks' => env('BUGSNAG_CALLBACKS', true),
215 |
216 | /*
217 | |--------------------------------------------------------------------------
218 | | User
219 | |--------------------------------------------------------------------------
220 | |
221 | | Enable this if you'd like us to set the current user logged in via
222 | | Laravel's authentication system.
223 | |
224 | | If you'd like to add your own user resolver, you can do this by using
225 | | callbacks via Bugsnag::registerCallback.
226 | |
227 | */
228 |
229 | 'user' => env('BUGSNAG_USER', true),
230 |
231 | ];
232 |
--------------------------------------------------------------------------------
/config/app.php:
--------------------------------------------------------------------------------
1 | 'My Application',
16 |
17 | /*
18 | |--------------------------------------------------------------------------
19 | | Application Environment
20 | |--------------------------------------------------------------------------
21 | |
22 | | This value determines the "environment" your application is currently
23 | | running in. This may determine how you prefer to configure various
24 | | services your application utilizes. Set this in your ".env" file.
25 | |
26 | */
27 |
28 | 'env' => env('APP_ENV', 'production'),
29 |
30 | /*
31 | |--------------------------------------------------------------------------
32 | | Application Debug Mode
33 | |--------------------------------------------------------------------------
34 | |
35 | | When your application is in debug mode, detailed error messages with
36 | | stack traces will be shown on every error that occurs within your
37 | | application. If disabled, a simple generic error page is shown.
38 | |
39 | */
40 |
41 | 'debug' => env('APP_DEBUG', false),
42 |
43 | /*
44 | |--------------------------------------------------------------------------
45 | | Application URL
46 | |--------------------------------------------------------------------------
47 | |
48 | | This URL is used by the console to properly generate URLs when using
49 | | the Artisan command line tool. You should set this to the root of
50 | | your application so that it is used when running Artisan tasks.
51 | |
52 | */
53 |
54 | 'url' => env('APP_URL', 'http://goalfeed.ca'),
55 |
56 | /*
57 | |--------------------------------------------------------------------------
58 | | Application Timezone
59 | |--------------------------------------------------------------------------
60 | |
61 | | Here you may specify the default timezone for your application, which
62 | | will be used by the PHP date and date-time functions. We have gone
63 | | ahead and set this to a sensible default for you out of the box.
64 | |
65 | */
66 |
67 | 'timezone' => 'UTC',
68 |
69 | /*
70 | |--------------------------------------------------------------------------
71 | | Application Locale Configuration
72 | |--------------------------------------------------------------------------
73 | |
74 | | The application locale determines the default locale that will be used
75 | | by the translation service provider. You are free to set this value
76 | | to any of the locales which will be supported by the application.
77 | |
78 | */
79 |
80 | 'locale' => 'en',
81 |
82 | /*
83 | |--------------------------------------------------------------------------
84 | | Application Fallback Locale
85 | |--------------------------------------------------------------------------
86 | |
87 | | The fallback locale determines the locale to use when the current one
88 | | is not available. You may change the value to correspond to any of
89 | | the language folders that are provided through your application.
90 | |
91 | */
92 |
93 | 'fallback_locale' => 'en',
94 |
95 | /*
96 | |--------------------------------------------------------------------------
97 | | Encryption Key
98 | |--------------------------------------------------------------------------
99 | |
100 | | This key is used by the Illuminate encrypter service and should be set
101 | | to a random, 32 character string, otherwise these encrypted strings
102 | | will not be safe. Please do this before deploying an application!
103 | |
104 | */
105 |
106 | 'key' => env('APP_KEY'),
107 |
108 | 'cipher' => 'AES-256-CBC',
109 |
110 | /*
111 | |--------------------------------------------------------------------------
112 | | Logging Configuration
113 | |--------------------------------------------------------------------------
114 | |
115 | | Here you may configure the log settings for your application. Out of
116 | | the box, Laravel uses the Monolog PHP logging library. This gives
117 | | you a variety of powerful log handlers / formatters to utilize.
118 | |
119 | | Available Settings: "single", "daily", "syslog", "errorlog"
120 | |
121 | */
122 |
123 | 'log' => env('APP_LOG', 'single'),
124 |
125 | 'log_level' => env('APP_LOG_LEVEL', 'debug'),
126 |
127 | /*
128 | |--------------------------------------------------------------------------
129 | | Autoloaded Service Providers
130 | |--------------------------------------------------------------------------
131 | |
132 | | The service providers listed here will be automatically loaded on the
133 | | request to your application. Feel free to add your own services to
134 | | this array to grant expanded functionality to your applications.
135 | |
136 | */
137 |
138 | 'providers' => [
139 |
140 | /*
141 | * Laravel Framework Service Providers...
142 | */
143 | Illuminate\Auth\AuthServiceProvider::class,
144 | Illuminate\Broadcasting\BroadcastServiceProvider::class,
145 | Illuminate\Bus\BusServiceProvider::class,
146 | Illuminate\Cache\CacheServiceProvider::class,
147 | Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class,
148 | Illuminate\Cookie\CookieServiceProvider::class,
149 | Illuminate\Database\DatabaseServiceProvider::class,
150 | Illuminate\Encryption\EncryptionServiceProvider::class,
151 | Illuminate\Filesystem\FilesystemServiceProvider::class,
152 | Illuminate\Foundation\Providers\FoundationServiceProvider::class,
153 | Illuminate\Hashing\HashServiceProvider::class,
154 | Illuminate\Mail\MailServiceProvider::class,
155 | Illuminate\Notifications\NotificationServiceProvider::class,
156 | Illuminate\Pagination\PaginationServiceProvider::class,
157 | Illuminate\Pipeline\PipelineServiceProvider::class,
158 | Illuminate\Queue\QueueServiceProvider::class,
159 | Illuminate\Redis\RedisServiceProvider::class,
160 | Illuminate\Auth\Passwords\PasswordResetServiceProvider::class,
161 | Illuminate\Session\SessionServiceProvider::class,
162 | Illuminate\Translation\TranslationServiceProvider::class,
163 | Illuminate\Validation\ValidationServiceProvider::class,
164 | Illuminate\View\ViewServiceProvider::class,
165 | Ixudra\Curl\CurlServiceProvider::class,
166 |
167 | /*
168 | * Package Service Providers...
169 | */
170 | //
171 | Bugsnag\BugsnagLaravel\BugsnagServiceProvider::class,
172 | TwigBridge\ServiceProvider::class,
173 |
174 |
175 | /*
176 | * Application Service Providers...
177 | */
178 | App\Providers\AppServiceProvider::class,
179 | App\Providers\BroadcastServiceProvider::class,
180 | App\Providers\AuthServiceProvider::class,
181 | App\Providers\EventServiceProvider::class,
182 | App\Providers\RouteServiceProvider::class,
183 |
184 | ],
185 |
186 | /*
187 | |--------------------------------------------------------------------------
188 | | Class Aliases
189 | |--------------------------------------------------------------------------
190 | |
191 | | This array of class aliases will be registered when this application
192 | | is started. However, feel free to register as many as you wish as
193 | | the aliases are "lazy" loaded so they don't hinder performance.
194 | |
195 | */
196 |
197 | 'aliases' => [
198 |
199 | 'App' => Illuminate\Support\Facades\App::class,
200 | 'Artisan' => Illuminate\Support\Facades\Artisan::class,
201 | 'Auth' => Illuminate\Support\Facades\Auth::class,
202 | 'Blade' => Illuminate\Support\Facades\Blade::class,
203 | 'Cache' => Illuminate\Support\Facades\Cache::class,
204 | 'Config' => Illuminate\Support\Facades\Config::class,
205 | 'Cookie' => Illuminate\Support\Facades\Cookie::class,
206 | 'Crypt' => Illuminate\Support\Facades\Crypt::class,
207 | 'DB' => Illuminate\Support\Facades\DB::class,
208 | 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
209 | 'Event' => Illuminate\Support\Facades\Event::class,
210 | 'File' => Illuminate\Support\Facades\File::class,
211 | 'Gate' => Illuminate\Support\Facades\Gate::class,
212 | 'Hash' => Illuminate\Support\Facades\Hash::class,
213 | 'Lang' => Illuminate\Support\Facades\Lang::class,
214 | 'Log' => Illuminate\Support\Facades\Log::class,
215 | 'Mail' => Illuminate\Support\Facades\Mail::class,
216 | 'Notification' => Illuminate\Support\Facades\Notification::class,
217 | 'Password' => Illuminate\Support\Facades\Password::class,
218 | 'Queue' => Illuminate\Support\Facades\Queue::class,
219 | 'Redirect' => Illuminate\Support\Facades\Redirect::class,
220 | 'Redis' => Illuminate\Support\Facades\Redis::class,
221 | 'Request' => Illuminate\Support\Facades\Request::class,
222 | 'Response' => Illuminate\Support\Facades\Response::class,
223 | 'Route' => Illuminate\Support\Facades\Route::class,
224 | 'Schema' => Illuminate\Support\Facades\Schema::class,
225 | 'Session' => Illuminate\Support\Facades\Session::class,
226 | 'Storage' => Illuminate\Support\Facades\Storage::class,
227 | 'URL' => Illuminate\Support\Facades\URL::class,
228 | 'Validator' => Illuminate\Support\Facades\Validator::class,
229 | 'View' => Illuminate\Support\Facades\View::class,
230 | 'Curl' => Ixudra\Curl\Facades\Curl::class,
231 | 'Bugsnag' => Bugsnag\BugsnagLaravel\Facades\Bugsnag::class,
232 |
233 | ],
234 |
235 | ];
236 |
--------------------------------------------------------------------------------