├── README.md
├── cef.pak
├── d3dcompiler_43.dll
├── d3dcompiler_46.dll
├── debug.log
├── devtools_resources.pak
├── ffmpegsumo.dll
├── icudt.dll
├── libEGL.dll
├── libGLESv2.dll
├── libcef.dll
├── license.txt
├── locales
├── am.pak
├── ar.pak
├── bg.pak
├── bn.pak
├── ca.pak
├── cs.pak
├── da.pak
├── de.pak
├── el.pak
├── en-GB.pak
├── en-US.pak
├── es-419.pak
├── es.pak
├── et.pak
├── fa.pak
├── fi.pak
├── fil.pak
├── fr.pak
├── gu.pak
├── he.pak
├── hi.pak
├── hr.pak
├── hu.pak
├── id.pak
├── it.pak
├── ja.pak
├── kn.pak
├── ko.pak
├── lt.pak
├── lv.pak
├── ml.pak
├── mr.pak
├── ms.pak
├── nb.pak
├── nl.pak
├── pl.pak
├── pt-BR.pak
├── pt-PT.pak
├── ro.pak
├── ru.pak
├── sk.pak
├── sl.pak
├── sr.pak
├── sv.pak
├── sw.pak
├── ta.pak
├── te.pak
├── th.pak
├── tr.pak
├── uk.pak
├── vi.pak
├── zh-CN.pak
└── zh-TW.pak
├── php
├── deplister.exe
├── ext
│ ├── php_bz2.dll
│ ├── php_com_dotnet.dll
│ ├── php_curl.dll
│ ├── php_enchant.dll
│ ├── php_exif.dll
│ ├── php_fileinfo.dll
│ ├── php_gd2.dll
│ ├── php_gettext.dll
│ ├── php_gmp.dll
│ ├── php_imap.dll
│ ├── php_interbase.dll
│ ├── php_intl.dll
│ ├── php_ldap.dll
│ ├── php_mbstring.dll
│ ├── php_mysql.dll
│ ├── php_mysqli.dll
│ ├── php_oci8_12c.dll
│ ├── php_openssl.dll
│ ├── php_pdo_firebird.dll
│ ├── php_pdo_mysql.dll
│ ├── php_pdo_oci.dll
│ ├── php_pdo_odbc.dll
│ ├── php_pdo_pgsql.dll
│ ├── php_pdo_sqlite.dll
│ ├── php_pgsql.dll
│ ├── php_shmop.dll
│ ├── php_snmp.dll
│ ├── php_soap.dll
│ ├── php_sockets.dll
│ ├── php_sqlite3.dll
│ ├── php_sybase_ct.dll
│ ├── php_tidy.dll
│ ├── php_xmlrpc.dll
│ └── php_xsl.dll
├── glib-2.dll
├── gmodule-2.dll
├── icudt53.dll
├── icuin53.dll
├── icuio53.dll
├── icule53.dll
├── iculx53.dll
├── icutest53.dll
├── icutu53.dll
├── icuuc53.dll
├── libeay32.dll
├── libenchant.dll
├── libenchant_ispell.dll
├── libenchant_myspell.dll
├── libpq.dll
├── libsasl.dll
├── libssh2.dll
├── license.txt
├── msvcp110.dll
├── msvcr110.dll
├── news.txt
├── phar.phar.bat
├── pharcommand.phar
├── php-cgi.exe
├── php-win.exe
├── php.exe
├── php.gif
├── php.ini
├── php5.dll
├── php5phpdbg.dll
├── phpdbg.exe
├── readme-redist-bins.txt
├── snapshot.txt
└── ssleay32.dll
├── phpdesktop-chrome.exe
├── settings.json
├── webcache
├── Cookies
├── Cookies-journal
├── GPUCache
│ ├── data_0
│ ├── data_1
│ ├── data_2
│ ├── data_3
│ └── index
├── data_0
├── data_1
├── data_2
├── data_3
└── index
└── www
├── .env.example
├── .gitattributes
├── .gitignore
├── app
├── Console
│ └── Kernel.php
├── Exceptions
│ └── Handler.php
├── Http
│ ├── Controllers
│ │ ├── Auth
│ │ │ ├── ForgotPasswordController.php
│ │ │ ├── LoginController.php
│ │ │ ├── RegisterController.php
│ │ │ └── ResetPasswordController.php
│ │ └── Controller.php
│ ├── Kernel.php
│ └── Middleware
│ │ ├── EncryptCookies.php
│ │ ├── RedirectIfAuthenticated.php
│ │ └── VerifyCsrfToken.php
├── Providers
│ ├── AppServiceProvider.php
│ ├── AuthServiceProvider.php
│ ├── BroadcastServiceProvider.php
│ ├── EventServiceProvider.php
│ └── RouteServiceProvider.php
└── User.php
├── artisan
├── bootstrap
├── app.php
├── autoload.php
└── cache
│ └── .gitignore
├── composer.json
├── config
├── app.php
├── auth.php
├── broadcasting.php
├── cache.php
├── compile.php
├── database.php
├── filesystems.php
├── mail.php
├── queue.php
├── services.php
├── session.php
└── view.php
├── database
├── .gitignore
├── factories
│ └── ModelFactory.php
├── migrations
│ ├── .gitkeep
│ ├── 2014_10_12_000000_create_users_table.php
│ └── 2014_10_12_100000_create_password_resets_table.php
└── seeds
│ ├── .gitkeep
│ └── DatabaseSeeder.php
├── gulpfile.js
├── package.json
├── phpunit.xml
├── public
├── .htaccess
├── css
│ └── app.css
├── favicon.ico
├── index.php
├── js
│ └── app.js
├── robots.txt
└── web.config
├── readme.md
├── resources
├── assets
│ ├── js
│ │ ├── app.js
│ │ ├── bootstrap.js
│ │ └── components
│ │ │ └── Example.vue
│ └── sass
│ │ ├── _variables.scss
│ │ └── app.scss
├── lang
│ └── en
│ │ ├── auth.php
│ │ ├── pagination.php
│ │ ├── passwords.php
│ │ └── validation.php
└── views
│ ├── errors
│ └── 503.blade.php
│ ├── vendor
│ └── .gitkeep
│ └── welcome.blade.php
├── routes
├── api.php
├── console.php
└── web.php
├── server.php
├── storage
├── app
│ ├── .gitignore
│ └── public
│ │ └── .gitignore
├── framework
│ ├── .gitignore
│ ├── cache
│ │ └── .gitignore
│ ├── sessions
│ │ └── .gitignore
│ └── views
│ │ └── .gitignore
└── logs
│ └── .gitignore
└── tests
├── ExampleTest.php
└── TestCase.php
/README.md:
--------------------------------------------------------------------------------
1 | # Laravel Desktop
2 | Laravel desktop starter pack helps you start your laravel app really quick without worrying
3 | so much about installation
4 |
5 | #Installation
6 | All you need to do is clone the repository they navigate to the directory where you cloned it then in the /www folder run
7 |
8 | ```composer
9 | composer update
10 | ```
11 |
12 | Once the you run it and the update has been completed, double click on phpdesktop-chrome.exe you can also rename it.
13 |
14 | Thanks and have fun,
15 | you can reach out to me via williamnwogbo@gmail.com for any question or you need assistance
--------------------------------------------------------------------------------
/cef.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/cef.pak
--------------------------------------------------------------------------------
/d3dcompiler_43.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/d3dcompiler_43.dll
--------------------------------------------------------------------------------
/d3dcompiler_46.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/d3dcompiler_46.dll
--------------------------------------------------------------------------------
/debug.log:
--------------------------------------------------------------------------------
1 | - 14:43:42.047 INFO: --------------------------------------------------------
2 | - 14:43:42.047 INFO: Started application
3 | - 14:43:42.047 INFO: Logging to: C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\debug.log
4 | - 14:43:42.047 INFO: Log level = DEBUG4
5 | - 14:43:42.047 INFO: Starting Mongoose 3.9c web server
6 | - 14:43:42.047 INFO: WWW directory: C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\www\public
7 | - 14:43:42.047 INFO: Index files: index.html,index.php
8 | - 14:43:42.047 INFO: CGI interpreter: C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\php\php-cgi.exe
9 | - 14:43:42.047 INFO: CGI pattern: **.php$
10 | - 14:43:42.047 INFO: CGI environment variables set: TMP=C:\Users\William\AppData\Local\Temp\,TEMP=C:\Users\William\AppData\Local\Temp\,TMPDIR=C:\Users\William\AppData\Local\Temp\,SERVER_NAME=127.0.0.1,PHPDESKTOP_VERSION=31.8
11 | - 14:43:42.047 INFO: Web server url: http://127.0.0.1:49541/
12 | - 14:43:42.047 INFO: remote_debugging_port = 58811
13 | - 14:43:42.063 DEBUG: Command line string for the browser process: "C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome.exe" --lang=en-US --log-file="C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\debug.log" --remote-debugging-port=58811 --no-sandbox
14 | - 14:43:42.078 DEBUG: App::OnContextInitialized()
15 | - 14:43:42.078 DEBUG: Window max width/height = 1286/680
16 | - 14:43:42.078 DEBUG: Window max size exceeded, new width/height = 1024/680
17 | - 14:43:42.078 DEBUG: GetBrowserWindow(): not found, hwnd = 1379458
18 | - 14:43:42.078 DEBUG: WindowProc(): event WM_GETMINMAXINFO: could not fetch BrowserWindow
19 | - 14:43:42.078 DEBUG: BrowserWindow::CreateBrowserControl()
20 | - 14:43:42.078 DEBUG: StoreBrowserWindow(): hwnd = 1379458
21 | - 14:43:42.094 DEBUG: BrowserWindow::OnSize() failed: CefBrowser object not created yet
22 | - 14:43:42.109 DEBUG: ClientHandler::OnAfterCreated()
23 | - 14:43:42.109 DEBUG: SetCefBrowser() called in ClientHandler::OnAfterCreated()
24 | - 14:43:42.109 INFO: DPI, ppix = 96, ppiy = 96
25 | - 14:43:42.109 INFO: DPI, browser zoom level = 0
26 | - 14:43:42.125 DEBUG: OnLoadingStateChange: loading=1, url=
27 | - 14:43:42.000 DEBUG: Command line string for the gpu-process process: "C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome.exe" --type=gpu-process --channel="15140.0.230510837\903749631" --no-sandbox --lang=en-US --log-file="C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\debug.log" --disable-d3d11 --supports-dual-gpus=false --gpu-driver-bug-workarounds=0,3,5,12,22 --gpu-vendor-id=0x8086 --gpu-device-id=0x0a16 --gpu-driver-vendor="Intel Corporation" --gpu-driver-version=20.19.15.4331 --lang=en-US --log-file="C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\debug.log" /prefetch:822062411
28 | - 14:43:42.000 DEBUG: Command line string for the renderer process: "C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome.exe" --type=renderer --no-sandbox --lang=en-US --lang=en-US --log-file="C:\xampp\htdocs\phpdesktop-chrome-31.8-php-5.6.1\phpdesktop-chrome-31.8-php-5.6.1\debug.log" --channel="15140.1.489526572\1750459208" /prefetch:673131151
29 | - 14:43:44.421 DEBUG: OnBrowserCreated()
30 | - 14:43:47.891 INFO: GET 200 /
31 | - 14:43:47.140 DEBUG: OnContextCreated()
32 | - 14:43:47.438 DEBUG: OnLoadingStateChange: loading=0, url=http://127.0.0.1:49541/
33 | - 14:44:06.500 DEBUG: WM_DESTROY
34 | - 14:44:06.500 DEBUG: RemoveBrowserWindow(): hwnd = 1379458
35 | - 14:44:06.500 INFO: Stopping Mongoose web server
36 | - 14:44:06.500 DEBUG: Mongoose webserver stopped immediately
37 | - 14:44:06.500 DEBUG: RemoveBrowserWindow(): hwnd = 1509818
38 | - 14:44:06.500 DEBUG: GetBrowserWindow(): not found, hwnd = 1509818
39 | - 14:44:06.500 WARNING: RemoveBrowserWindow() failed: GetBrowserWindow() failed
40 | - 14:44:06.515 DEBUG: OnBrowserDestroyed()
41 | - 14:44:06.875 INFO: Ended application
42 | - 14:44:06.875 INFO: --------------------------------------------------------
43 |
--------------------------------------------------------------------------------
/devtools_resources.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/devtools_resources.pak
--------------------------------------------------------------------------------
/ffmpegsumo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/ffmpegsumo.dll
--------------------------------------------------------------------------------
/icudt.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/icudt.dll
--------------------------------------------------------------------------------
/libEGL.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/libEGL.dll
--------------------------------------------------------------------------------
/libGLESv2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/libGLESv2.dll
--------------------------------------------------------------------------------
/libcef.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/libcef.dll
--------------------------------------------------------------------------------
/license.txt:
--------------------------------------------------------------------------------
1 | Copyright (c) 2012-2014 Czarek Tomczak. Portions Copyright
2 | (c) 2008-2013 Marshall A.Greenblatt, 2006-2013 Google Inc.
3 | All rights reserved.
4 |
5 | Project website: .
6 |
7 | Redistribution and use in source and binary forms, with
8 | or without modification, are permitted provided that the
9 | following conditions are met:
10 |
11 | * Redistributions of source code must retain the above
12 | copyright notice, this list of conditions and the
13 | following disclaimer.
14 |
15 | * Redistributions in binary form must reproduce the above
16 | copyright notice, this list of conditions and the
17 | following disclaimer in the documentation and/or other
18 | materials provided with the distribution.
19 |
20 | * Neither the name of PHP Desktop, nor the name Google Inc.
21 | nor the name Chromium Embedded Framework nor the names of
22 | its contributors may be used to endorse or promote products
23 | derived from this software without specific prior written
24 | permission.
25 |
26 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
27 | CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
28 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
29 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
30 | DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
31 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
33 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
34 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
36 | CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
37 | OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
38 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 |
40 | This product includes the following third party libraries:
41 | * Chromium Embedded Framework licensed under the BSD 3-clause license.
42 | See: https://code.google.com/p/chromiumembedded/
43 | * PHP Software licensed under the PHP License 3.0.1.
44 | See: http://www.php.net/software/
45 | * Mongoose webserver revision 04fc209 licensed under the MIT license.
46 | See: https://github.com/cesanta/mongoose/tree/04fc209644b414d915c446bb1815b55e9fe63acc
47 | * JSON parser licensed under the BSD 2-clause license.
48 | See: https://github.com/udp/json-parser
49 |
--------------------------------------------------------------------------------
/locales/am.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/am.pak
--------------------------------------------------------------------------------
/locales/ar.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ar.pak
--------------------------------------------------------------------------------
/locales/bg.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/bg.pak
--------------------------------------------------------------------------------
/locales/bn.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/bn.pak
--------------------------------------------------------------------------------
/locales/ca.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ca.pak
--------------------------------------------------------------------------------
/locales/cs.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/cs.pak
--------------------------------------------------------------------------------
/locales/da.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/da.pak
--------------------------------------------------------------------------------
/locales/de.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/de.pak
--------------------------------------------------------------------------------
/locales/el.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/el.pak
--------------------------------------------------------------------------------
/locales/en-GB.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/en-GB.pak
--------------------------------------------------------------------------------
/locales/en-US.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/en-US.pak
--------------------------------------------------------------------------------
/locales/es-419.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/es-419.pak
--------------------------------------------------------------------------------
/locales/es.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/es.pak
--------------------------------------------------------------------------------
/locales/et.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/et.pak
--------------------------------------------------------------------------------
/locales/fa.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/fa.pak
--------------------------------------------------------------------------------
/locales/fi.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/fi.pak
--------------------------------------------------------------------------------
/locales/fil.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/fil.pak
--------------------------------------------------------------------------------
/locales/fr.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/fr.pak
--------------------------------------------------------------------------------
/locales/gu.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/gu.pak
--------------------------------------------------------------------------------
/locales/he.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/he.pak
--------------------------------------------------------------------------------
/locales/hi.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/hi.pak
--------------------------------------------------------------------------------
/locales/hr.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/hr.pak
--------------------------------------------------------------------------------
/locales/hu.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/hu.pak
--------------------------------------------------------------------------------
/locales/id.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/id.pak
--------------------------------------------------------------------------------
/locales/it.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/it.pak
--------------------------------------------------------------------------------
/locales/ja.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ja.pak
--------------------------------------------------------------------------------
/locales/kn.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/kn.pak
--------------------------------------------------------------------------------
/locales/ko.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ko.pak
--------------------------------------------------------------------------------
/locales/lt.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/lt.pak
--------------------------------------------------------------------------------
/locales/lv.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/lv.pak
--------------------------------------------------------------------------------
/locales/ml.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ml.pak
--------------------------------------------------------------------------------
/locales/mr.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/mr.pak
--------------------------------------------------------------------------------
/locales/ms.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ms.pak
--------------------------------------------------------------------------------
/locales/nb.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/nb.pak
--------------------------------------------------------------------------------
/locales/nl.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/nl.pak
--------------------------------------------------------------------------------
/locales/pl.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/pl.pak
--------------------------------------------------------------------------------
/locales/pt-BR.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/pt-BR.pak
--------------------------------------------------------------------------------
/locales/pt-PT.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/pt-PT.pak
--------------------------------------------------------------------------------
/locales/ro.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ro.pak
--------------------------------------------------------------------------------
/locales/ru.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ru.pak
--------------------------------------------------------------------------------
/locales/sk.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/sk.pak
--------------------------------------------------------------------------------
/locales/sl.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/sl.pak
--------------------------------------------------------------------------------
/locales/sr.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/sr.pak
--------------------------------------------------------------------------------
/locales/sv.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/sv.pak
--------------------------------------------------------------------------------
/locales/sw.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/sw.pak
--------------------------------------------------------------------------------
/locales/ta.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/ta.pak
--------------------------------------------------------------------------------
/locales/te.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/te.pak
--------------------------------------------------------------------------------
/locales/th.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/th.pak
--------------------------------------------------------------------------------
/locales/tr.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/tr.pak
--------------------------------------------------------------------------------
/locales/uk.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/uk.pak
--------------------------------------------------------------------------------
/locales/vi.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/vi.pak
--------------------------------------------------------------------------------
/locales/zh-CN.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/zh-CN.pak
--------------------------------------------------------------------------------
/locales/zh-TW.pak:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/locales/zh-TW.pak
--------------------------------------------------------------------------------
/php/deplister.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/deplister.exe
--------------------------------------------------------------------------------
/php/ext/php_bz2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_bz2.dll
--------------------------------------------------------------------------------
/php/ext/php_com_dotnet.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_com_dotnet.dll
--------------------------------------------------------------------------------
/php/ext/php_curl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_curl.dll
--------------------------------------------------------------------------------
/php/ext/php_enchant.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_enchant.dll
--------------------------------------------------------------------------------
/php/ext/php_exif.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_exif.dll
--------------------------------------------------------------------------------
/php/ext/php_fileinfo.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_fileinfo.dll
--------------------------------------------------------------------------------
/php/ext/php_gd2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_gd2.dll
--------------------------------------------------------------------------------
/php/ext/php_gettext.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_gettext.dll
--------------------------------------------------------------------------------
/php/ext/php_gmp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_gmp.dll
--------------------------------------------------------------------------------
/php/ext/php_imap.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_imap.dll
--------------------------------------------------------------------------------
/php/ext/php_interbase.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_interbase.dll
--------------------------------------------------------------------------------
/php/ext/php_intl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_intl.dll
--------------------------------------------------------------------------------
/php/ext/php_ldap.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_ldap.dll
--------------------------------------------------------------------------------
/php/ext/php_mbstring.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_mbstring.dll
--------------------------------------------------------------------------------
/php/ext/php_mysql.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_mysql.dll
--------------------------------------------------------------------------------
/php/ext/php_mysqli.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_mysqli.dll
--------------------------------------------------------------------------------
/php/ext/php_oci8_12c.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_oci8_12c.dll
--------------------------------------------------------------------------------
/php/ext/php_openssl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_openssl.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_firebird.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_firebird.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_mysql.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_mysql.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_oci.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_oci.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_odbc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_odbc.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_pgsql.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_pgsql.dll
--------------------------------------------------------------------------------
/php/ext/php_pdo_sqlite.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pdo_sqlite.dll
--------------------------------------------------------------------------------
/php/ext/php_pgsql.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_pgsql.dll
--------------------------------------------------------------------------------
/php/ext/php_shmop.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_shmop.dll
--------------------------------------------------------------------------------
/php/ext/php_snmp.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_snmp.dll
--------------------------------------------------------------------------------
/php/ext/php_soap.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_soap.dll
--------------------------------------------------------------------------------
/php/ext/php_sockets.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_sockets.dll
--------------------------------------------------------------------------------
/php/ext/php_sqlite3.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_sqlite3.dll
--------------------------------------------------------------------------------
/php/ext/php_sybase_ct.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_sybase_ct.dll
--------------------------------------------------------------------------------
/php/ext/php_tidy.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_tidy.dll
--------------------------------------------------------------------------------
/php/ext/php_xmlrpc.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_xmlrpc.dll
--------------------------------------------------------------------------------
/php/ext/php_xsl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ext/php_xsl.dll
--------------------------------------------------------------------------------
/php/glib-2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/glib-2.dll
--------------------------------------------------------------------------------
/php/gmodule-2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/gmodule-2.dll
--------------------------------------------------------------------------------
/php/icudt53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icudt53.dll
--------------------------------------------------------------------------------
/php/icuin53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icuin53.dll
--------------------------------------------------------------------------------
/php/icuio53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icuio53.dll
--------------------------------------------------------------------------------
/php/icule53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icule53.dll
--------------------------------------------------------------------------------
/php/iculx53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/iculx53.dll
--------------------------------------------------------------------------------
/php/icutest53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icutest53.dll
--------------------------------------------------------------------------------
/php/icutu53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icutu53.dll
--------------------------------------------------------------------------------
/php/icuuc53.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/icuuc53.dll
--------------------------------------------------------------------------------
/php/libeay32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libeay32.dll
--------------------------------------------------------------------------------
/php/libenchant.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libenchant.dll
--------------------------------------------------------------------------------
/php/libenchant_ispell.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libenchant_ispell.dll
--------------------------------------------------------------------------------
/php/libenchant_myspell.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libenchant_myspell.dll
--------------------------------------------------------------------------------
/php/libpq.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libpq.dll
--------------------------------------------------------------------------------
/php/libsasl.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libsasl.dll
--------------------------------------------------------------------------------
/php/libssh2.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/libssh2.dll
--------------------------------------------------------------------------------
/php/license.txt:
--------------------------------------------------------------------------------
1 | --------------------------------------------------------------------
2 | The PHP License, version 3.01
3 | Copyright (c) 1999 - 2014 The PHP Group. All rights reserved.
4 | --------------------------------------------------------------------
5 |
6 | Redistribution and use in source and binary forms, with or without
7 | modification, is permitted provided that the following conditions
8 | are met:
9 |
10 | 1. Redistributions of source code must retain the above copyright
11 | notice, this list of conditions and the following disclaimer.
12 |
13 | 2. Redistributions in binary form must reproduce the above copyright
14 | notice, this list of conditions and the following disclaimer in
15 | the documentation and/or other materials provided with the
16 | distribution.
17 |
18 | 3. The name "PHP" must not be used to endorse or promote products
19 | derived from this software without prior written permission. For
20 | written permission, please contact group@php.net.
21 |
22 | 4. Products derived from this software may not be called "PHP", nor
23 | may "PHP" appear in their name, without prior written permission
24 | from group@php.net. You may indicate that your software works in
25 | conjunction with PHP by saying "Foo for PHP" instead of calling
26 | it "PHP Foo" or "phpfoo"
27 |
28 | 5. The PHP Group may publish revised and/or new versions of the
29 | license from time to time. Each version will be given a
30 | distinguishing version number.
31 | Once covered code has been published under a particular version
32 | of the license, you may always continue to use it under the terms
33 | of that version. You may also choose to use such covered code
34 | under the terms of any subsequent version of the license
35 | published by the PHP Group. No one other than the PHP Group has
36 | the right to modify the terms applicable to covered code created
37 | under this License.
38 |
39 | 6. Redistributions of any form whatsoever must retain the following
40 | acknowledgment:
41 | "This product includes PHP software, freely available from
42 | ".
43 |
44 | THIS SOFTWARE IS PROVIDED BY THE PHP DEVELOPMENT TEAM ``AS IS'' AND
45 | ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
46 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
47 | PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE PHP
48 | DEVELOPMENT TEAM OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
49 | INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
50 | (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
51 | SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
52 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
53 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
54 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
55 | OF THE POSSIBILITY OF SUCH DAMAGE.
56 |
57 | --------------------------------------------------------------------
58 |
59 | This software consists of voluntary contributions made by many
60 | individuals on behalf of the PHP Group.
61 |
62 | The PHP Group can be contacted via Email at group@php.net.
63 |
64 | For more information on the PHP Group and the PHP project,
65 | please see .
66 |
67 | PHP includes the Zend Engine, freely available at
68 | .
69 |
--------------------------------------------------------------------------------
/php/msvcp110.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/msvcp110.dll
--------------------------------------------------------------------------------
/php/msvcr110.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/msvcr110.dll
--------------------------------------------------------------------------------
/php/phar.phar.bat:
--------------------------------------------------------------------------------
1 | "%~dp0php.exe" "%~dp0pharcommand.phar" %*
2 |
--------------------------------------------------------------------------------
/php/pharcommand.phar:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/pharcommand.phar
--------------------------------------------------------------------------------
/php/php-cgi.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php-cgi.exe
--------------------------------------------------------------------------------
/php/php-win.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php-win.exe
--------------------------------------------------------------------------------
/php/php.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php.exe
--------------------------------------------------------------------------------
/php/php.gif:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php.gif
--------------------------------------------------------------------------------
/php/php.ini:
--------------------------------------------------------------------------------
1 | ; Extensions
2 | extension_dir = "ext/"
3 | extension=php_curl.dll
4 | extension=php_gd2.dll
5 | extension=php_mysql.dll
6 | extension=php_mysqli.dll
7 | extension=php_openssl.dll
8 | extension=php_pdo_mysql.dll
9 | extension=php_pdo_pgsql.dll
10 | extension=php_pdo_sqlite.dll
11 | extension=php_pgsql.dll
12 | extension=php_sqlite3.dll
13 | extension=php_com_dotnet.dll
14 |
15 | ; Date
16 | date.timezone=Europe/Berlin
17 |
18 | ; Errors
19 | error_reporting=E_ALL
20 | display_errors=On
21 | display_startup_errors=On
22 | log_errors=Off
23 | report_memleaks=On
24 | report_zend_debug=On
25 |
26 | ; General
27 | short_open_tag=On
28 | ignore_user_abort=Off
29 | implicit_flush=Off
30 | output_buffering=0
31 | default_charset = "UTF-8"
32 |
33 | ; Execution time
34 | max_execution_time=30
35 |
36 | ; Memory
37 | memory_limit=128M
38 | post_max_size=8M
39 |
40 | ; File uploads
41 | ; "post_max_size" must be equal or bigger than "upload_max_filesize"
42 | max_file_uploads=20
43 | upload_max_filesize=128M
44 | post_max_size=256M
45 |
46 | ; Smtp server is not included with phpdesktop
47 | SMTP=127.0.0.1
48 | smtp_port=25
49 |
50 |
--------------------------------------------------------------------------------
/php/php5.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php5.dll
--------------------------------------------------------------------------------
/php/php5phpdbg.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/php5phpdbg.dll
--------------------------------------------------------------------------------
/php/phpdbg.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/phpdbg.exe
--------------------------------------------------------------------------------
/php/readme-redist-bins.txt:
--------------------------------------------------------------------------------
1 | 1. libmagic (ext/fileinfo) see ext/fileinfo/libmagic/LICENSE
2 | 2. Oniguruma (ext/mbstring) see ext/mbstring/oniguruma/COPYING
3 | 3. libmbfl (ext/mbstring) see ext/mbstring/libmbfl/LICENSE
4 | 4. pcrelib (ext/pcre) see ext/pcre/pcrelib/LICENCE
5 | 5. ext/standard crypt
6 | 6. ext/standard crypt's blowfish implementation
7 | 7. Sqlite/Sqlite3 ext/sqlite3 ext/sqlite
8 | 8. ext/json/json_parser
9 | 9. ext/standard/rand
10 | 10. ext/standard/scanf
11 | 11. ext/standard/strnatcmp.c
12 | 12. ext/standard/uuencode
13 | 13. libxmlrpc ext/xmlrpc
14 | 14. libzip ext/zip
15 | 15. main/snprintf.c
16 | 16. main/strlcat
17 | 17. main/strlcpy
18 | 18. libgd see ext/gd/libgd/COPYING
19 |
20 | 5. ext/standard crypt
21 |
22 | FreeSec: libcrypt for NetBSD
23 |
24 | Copyright (c) 1994 David Burren
25 | All rights reserved.
26 |
27 | Redistribution and use in source and binary forms, with or without
28 | modification, are permitted provided that the following conditions
29 | are met:
30 | 1. Redistributions of source code must retain the above copyright
31 | notice, this list of conditions and the following disclaimer.
32 | 2. Redistributions in binary form must reproduce the above copyright
33 | notice, this list of conditions and the following disclaimer in the
34 | documentation and/or other materials provided with the distribution.
35 | 3. Neither the name of the author nor the names of other contributors
36 | may be used to endorse or promote products derived from this software
37 | without specific prior written permission.
38 |
39 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
40 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
41 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
42 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
43 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
44 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
45 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
46 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
47 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
48 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
49 | SUCH DAMAGE.
50 |
51 |
52 | 6. ext/standard crypt's blowfish implementation
53 |
54 | The crypt_blowfish homepage is:
55 |
56 | http://www.openwall.com/crypt/
57 |
58 | This code comes from John the Ripper password cracker, with reentrant
59 | and crypt(3) interfaces added, but optimizations specific to password
60 | cracking removed.
61 |
62 | Written by Solar Designer in 1998-2011.
63 | No copyright is claimed, and the software is hereby placed in the public
64 | domain. In case this attempt to disclaim copyright and place the software
65 | in the public domain is deemed null and void, then the software is
66 | Copyright (c) 1998-2011 Solar Designer and it is hereby released to the
67 | general public under the following terms:
68 |
69 | Redistribution and use in source and binary forms, with or without
70 | modification, are permitted.
71 |
72 | There's ABSOLUTELY NO WARRANTY, express or implied.
73 |
74 | It is my intent that you should be able to use this on your system,
75 | as part of a software package, or anywhere else to improve security,
76 | ensure compatibility, or for any other purpose. I would appreciate
77 | it if you give credit where it is due and keep your modifications in
78 | the public domain as well, but I don't require that in order to let
79 | you place this code and any modifications you make under a license
80 | of your choice.
81 |
82 | This implementation is mostly compatible with OpenBSD's bcrypt.c (prefix
83 | "$2a$") by Niels Provos , and uses some of his
84 | ideas. The password hashing algorithm was designed by David Mazieres
85 | . For more information on the level of compatibility,
86 | please refer to the comments in BF_set_key() and to the crypt(3) man page
87 | included in the crypt_blowfish tarball.
88 |
89 | There's a paper on the algorithm that explains its design decisions:
90 |
91 | http://www.usenix.org/events/usenix99/provos.html
92 |
93 | Some of the tricks in BF_ROUND might be inspired by Eric Young's
94 | Blowfish library (I can't be sure if I would think of something if I
95 | hadn't seen his code).
96 |
97 |
98 | 7. Sqlite/Sqlite3 ext/sqlite3 ext/sqlite
99 |
100 | The author disclaims copyright to this source code. In place of
101 | a legal notice, here is a blessing:
102 | May you do good and not evil.
103 | May you find forgiveness for yourself and forgive others.
104 | May you share freely, never taking more than you give.
105 |
106 |
107 | 8. ext/json/json_parser
108 | Copyright (c) 2005 JSON.org
109 |
110 | Permission is hereby granted, free of charge, to any person obtaining a copy
111 | of this software and associated documentation files (the "Software"), to deal
112 | in the Software without restriction, including without limitation the rights
113 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
114 | copies of the Software, and to permit persons to whom the Software is
115 | furnished to do so, subject to the following conditions:
116 |
117 | The above copyright notice and this permission notice shall be included in all
118 | copies or substantial portions of the Software.
119 |
120 | The Software shall be used for Good, not Evil.
121 |
122 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
123 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
124 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
125 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
126 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
127 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
128 | SOFTWARE.
129 |
130 |
131 | 9. ext/standard/rand
132 | The following php_mt_...() functions are based on a C++ class MTRand by
133 | Richard J. Wagner. For more information see the web page at
134 | http://www-personal.engin.umich.edu/~wagnerr/MersenneTwister.html
135 |
136 | Mersenne Twister random number generator -- a C++ class MTRand
137 | Based on code by Makoto Matsumoto, Takuji Nishimura, and Shawn Cokus
138 | Richard J. Wagner v1.0 15 May 2003 rjwagner@writeme.com
139 |
140 | The Mersenne Twister is an algorithm for generating random numbers. It
141 | was designed with consideration of the flaws in various other generators.
142 | The period, 2^19937-1, and the order of equidistribution, 623 dimensions,
143 | are far greater. The generator is also fast; it avoids multiplication and
144 | division, and it benefits from caches and pipelines. For more information
145 | see the inventors' web page at http://www.math.keio.ac.jp/~matumoto/emt.html
146 |
147 | Reference
148 | M. Matsumoto and T. Nishimura, "Mersenne Twister: A 623-Dimensionally
149 | Equidistributed Uniform Pseudo-Random Number Generator", ACM Transactions on
150 | Modeling and Computer Simulation, Vol. 8, No. 1, January 1998, pp 3-30.
151 |
152 | Copyright (C) 1997 - 2002, Makoto Matsumoto and Takuji Nishimura,
153 | Copyright (C) 2000 - 2003, Richard J. Wagner
154 | All rights reserved.
155 |
156 | Redistribution and use in source and binary forms, with or without
157 | modification, are permitted provided that the following conditions
158 | are met:
159 |
160 | 1. Redistributions of source code must retain the above copyright
161 | notice, this list of conditions and the following disclaimer.
162 |
163 | 2. Redistributions in binary form must reproduce the above copyright
164 | notice, this list of conditions and the following disclaimer in the
165 | documentation and/or other materials provided with the distribution.
166 |
167 | 3. The names of its contributors may not be used to endorse or promote
168 | products derived from this software without specific prior written
169 | permission.
170 |
171 | THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172 | "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
173 | LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
174 | A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
175 | CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
176 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
177 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
178 | PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
179 | LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
180 | NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
181 | SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
182 |
183 |
184 | 10. ext/standard/scanf
185 | scanf.c --
186 |
187 | This file contains the base code which implements sscanf and by extension
188 | fscanf. Original code is from TCL8.3.0 and bears the following copyright:
189 |
190 | This software is copyrighted by the Regents of the University of
191 | California, Sun Microsystems, Inc., Scriptics Corporation,
192 | and other parties. The following terms apply to all files associated
193 | with the software unless explicitly disclaimed in individual files.
194 |
195 | The authors hereby grant permission to use, copy, modify, distribute,
196 | and license this software and its documentation for any purpose, provided
197 | that existing copyright notices are retained in all copies and that this
198 | notice is included verbatim in any distributions. No written agreement,
199 | license, or royalty fee is required for any of the authorized uses.
200 | Modifications to this software may be copyrighted by their authors
201 | and need not follow the licensing terms described here, provided that
202 | the new terms are clearly indicated on the first page of each file where
203 | they apply.
204 |
205 | IN NO EVENT SHALL THE AUTHORS OR DISTRIBUTORS BE LIABLE TO ANY PARTY
206 | FOR DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
207 | ARISING OUT OF THE USE OF THIS SOFTWARE, ITS DOCUMENTATION, OR ANY
208 | DERIVATIVES THEREOF, EVEN IF THE AUTHORS HAVE BEEN ADVISED OF THE
209 | POSSIBILITY OF SUCH DAMAGE.
210 |
211 | THE AUTHORS AND DISTRIBUTORS SPECIFICALLY DISCLAIM ANY WARRANTIES,
212 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY,
213 | FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT. THIS SOFTWARE
214 | IS PROVIDED ON AN "AS IS" BASIS, AND THE AUTHORS AND DISTRIBUTORS HAVE
215 | NO OBLIGATION TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR
216 | MODIFICATIONS.
217 |
218 | GOVERNMENT USE: If you are acquiring this software on behalf of the
219 | U.S. government, the Government shall have only "Restricted Rights"
220 | in the software and related documentation as defined in the Federal
221 | Acquisition Regulations (FARs) in Clause 52.227.19 (c) (2). If you
222 | are acquiring the software on behalf of the Department of Defense, the
223 | software shall be classified as "Commercial Computer Software" and the
224 | Government shall have only "Restricted Rights" as defined in Clause
225 | 252.227-7013 (c) (1) of DFARs. Notwithstanding the foregoing, the
226 | authors grant the U.S. Government and others acting in its behalf
227 | permission to use and distribute the software in accordance with the
228 | terms specified in this license.
229 |
230 | 11. ext/standard/strnatcmp.c
231 |
232 | strnatcmp.c -- Perform 'natural order' comparisons of strings in C.
233 | Copyright (C) 2000 by Martin Pool
234 |
235 | This software is provided 'as-is', without any express or implied
236 | warranty. In no event will the authors be held liable for any damages
237 | arising from the use of this software.
238 |
239 | Permission is granted to anyone to use this software for any purpose,
240 | including commercial applications, and to alter it and redistribute it
241 | freely, subject to the following restrictions:
242 |
243 | 1. The origin of this software must not be misrepresented; you must not
244 | claim that you wrote the original software. If you use this software
245 | in a product, an acknowledgment in the product documentation would be
246 | appreciated but is not required.
247 | 2. Altered source versions must be plainly marked as such, and must not be
248 | misrepresented as being the original software.
249 | 3. This notice may not be removed or altered from any source distribution.
250 |
251 | 12. ext/standard/uuencode
252 | Portions of this code are based on Berkeley's uuencode/uudecode
253 | implementation.
254 |
255 | Copyright (c) 1983, 1993
256 | The Regents of the University of California. All rights reserved.
257 |
258 | Redistribution and use in source and binary forms, with or without
259 | modification, are permitted provided that the following conditions
260 | are met:
261 | 1. Redistributions of source code must retain the above copyright
262 | notice, this list of conditions and the following disclaimer.
263 | 2. Redistributions in binary form must reproduce the above copyright
264 | notice, this list of conditions and the following disclaimer in the
265 | documentation and/or other materials provided with the distribution.
266 | 3. All advertising materials mentioning features or use of this software
267 | must display the following acknowledgement:
268 | This product includes software developed by the University of
269 | California, Berkeley and its contributors.
270 | 4. Neither the name of the University nor the names of its contributors
271 | may be used to endorse or promote products derived from this software
272 | without specific prior written permission.
273 |
274 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
275 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
276 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
277 | ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
278 | FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
279 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
280 | OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
282 | LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
283 | OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
284 | SUCH DAMAGE.
285 |
286 |
287 | 13. libxmlrpc ext/xmlrpc
288 |
289 | Copyright 2000 Epinions, Inc.
290 |
291 | Subject to the following 3 conditions, Epinions, Inc. permits you, free
292 | of charge, to (a) use, copy, distribute, modify, perform and display this
293 | software and associated documentation files (the "Software"), and (b)
294 | permit others to whom the Software is furnished to do so as well.
295 |
296 | 1) The above copyright notice and this permission notice shall be included
297 | without modification in all copies or substantial portions of the
298 | Software.
299 |
300 | 2) THE SOFTWARE IS PROVIDED "AS IS", WITHOUT ANY WARRANTY OR CONDITION OF
301 | ANY KIND, EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION ANY
302 | IMPLIED WARRANTIES OF ACCURACY, MERCHANTABILITY, FITNESS FOR A PARTICULAR
303 | PURPOSE OR NONINFRINGEMENT.
304 |
305 | 3) IN NO EVENT SHALL EPINIONS, INC. BE LIABLE FOR ANY DIRECT, INDIRECT,
306 | SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES OR LOST PROFITS ARISING OUT
307 | OF OR IN CONNECTION WITH THE SOFTWARE (HOWEVER ARISING, INCLUDING
308 | NEGLIGENCE), EVEN IF EPINIONS, INC. IS AWARE OF THE POSSIBILITY OF SUCH
309 | DAMAGES.
310 |
311 | 14. libzip ext/zip
312 | zip.h -- exported declarations.
313 | Copyright (C) 1999-2009 Dieter Baron and Thomas Klausner
314 |
315 | This file is part of libzip, a library to manipulate ZIP archives.
316 | The authors can be contacted at
317 |
318 | Redistribution and use in source and binary forms, with or without
319 | modification, are permitted provided that the following conditions
320 | are met:
321 | 1. Redistributions of source code must retain the above copyright
322 | notice, this list of conditions and the following disclaimer.
323 | 2. Redistributions in binary form must reproduce the above copyright
324 | notice, this list of conditions and the following disclaimer in
325 | the documentation and/or other materials provided with the
326 | distribution.
327 | 3. The names of the authors may not be used to endorse or promote
328 | products derived from this software without specific prior
329 | written permission.
330 |
331 | THIS SOFTWARE IS PROVIDED BY THE AUTHORS ``AS IS'' AND ANY EXPRESS
332 | OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
333 | WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
334 | ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY
335 | DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
336 | DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
337 | GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
338 | INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
339 | IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
340 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
341 | IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
342 |
343 | 15. main/snprintf.c
344 | Copyright (c) 2002, 2006 Todd C. Miller
345 |
346 | Permission to use, copy, modify, and distribute this software for any
347 | purpose with or without fee is hereby granted, provided that the above
348 | copyright notice and this permission notice appear in all copies.
349 |
350 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
351 | WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
352 | MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
353 | ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
354 | WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
355 | ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
356 | OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
357 |
358 | Sponsored in part by the Defense Advanced Research Projects
359 | Agency (DARPA) and Air Force Research Laboratory, Air Force
360 | Materiel Command, USAF, under agreement number F39502-99-1-0512.
361 |
362 | main/spprintf
363 | Copyright (c) 1995-1998 The Apache Group. All rights reserved.
364 |
365 | Redistribution and use in source and binary forms, with or without
366 | modification, are permitted provided that the following conditions
367 | are met:
368 |
369 | 1. Redistributions of source code must retain the above copyright
370 | notice, this list of conditions and the following disclaimer.
371 |
372 | 2. Redistributions in binary form must reproduce the above copyright
373 | notice, this list of conditions and the following disclaimer in
374 | the documentation and/or other materials provided with the
375 | distribution.
376 |
377 | 3. All advertising materials mentioning features or use of this
378 | software must display the following acknowledgment:
379 | "This product includes software developed by the Apache Group
380 | for use in the Apache HTTP server project (http://www.apache.org/)."
381 |
382 | 4. The names "Apache Server" and "Apache Group" must not be used to
383 | endorse or promote products derived from this software without
384 | prior written permission.
385 |
386 | 5. Redistributions of any form whatsoever must retain the following
387 | acknowledgment:
388 | "This product includes software developed by the Apache Group
389 | for use in the Apache HTTP server project (http://www.apache.org/)."
390 |
391 | THIS SOFTWARE IS PROVIDED BY THE APACHE GROUP ``AS IS'' AND ANY
392 | EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
393 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
394 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE APACHE GROUP OR
395 | ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
396 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
397 | NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
398 | LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
399 | HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
400 | STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
401 | ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
402 | OF THE POSSIBILITY OF SUCH DAMAGE.
403 | ====================================================================
404 |
405 | This software consists of voluntary contributions made by many
406 | individuals on behalf of the Apache Group and was originally based
407 | on public domain software written at the National Center for
408 | Supercomputing Applications, University of Illinois, Urbana-Champaign.
409 | For more information on the Apache Group and the Apache HTTP server
410 | project, please see .
411 |
412 | This code is based on, and used with the permission of, the
413 | SIO stdio-replacement strx_* functions by Panos Tsirigotis
414 | for xinetd.
415 |
416 | 16. main/strlcat
417 | 17. main/strlcpy
418 | Copyright (c) 1998 Todd C. Miller
419 | All rights reserved.
420 |
421 | Redistribution and use in source and binary forms, with or without
422 | modification, are permitted provided that the following conditions
423 | are met:
424 | 1. Redistributions of source code must retain the above copyright
425 | notice, this list of conditions and the following disclaimer.
426 | 2. Redistributions in binary form must reproduce the above copyright
427 | notice, this list of conditions and the following disclaimer in the
428 | documentation and/or other materials provided with the distribution.
429 | 3. The name of the author may not be used to endorse or promote products
430 | derived from this software without specific prior written permission.
431 |
432 | THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
433 | INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
434 | AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
435 | THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
436 | EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
437 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
438 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
439 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
440 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
441 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
442 |
443 |
--------------------------------------------------------------------------------
/php/snapshot.txt:
--------------------------------------------------------------------------------
1 | This snapshot was automatically generated on
2 | Wed, 01 Oct 2014 20:48:34 +0000
3 |
4 | Version: 5.6.1
5 | Branch: HEAD
6 | Build: C:\php-sdk\php56\vc11\x86\obj\Release
7 |
8 | Built-in Extensions
9 | ===========================
10 | Core
11 | bcmath
12 | calendar
13 | ctype
14 | date
15 | ereg
16 | filter
17 | ftp
18 | hash
19 | iconv
20 | json
21 | mcrypt
22 | SPL
23 | odbc
24 | pcre
25 | Reflection
26 | session
27 | standard
28 | mysqlnd
29 | tokenizer
30 | zip
31 | zlib
32 | libxml
33 | dom
34 | PDO
35 | Phar
36 | SimpleXML
37 | wddx
38 | xml
39 | xmlreader
40 | xmlwriter
41 | mhash
42 |
43 |
44 | Dependency information:
45 | Module: php-cgi.exe
46 | ===========================
47 | msvcr110.dll
48 |
49 | Module: php.exe
50 | ===========================
51 | msvcr110.dll
52 |
53 | Module: php-win.exe
54 | ===========================
55 | msvcr110.dll
56 |
57 | Module: phpdbg.exe
58 | ===========================
59 | msvcr110.dll
60 |
61 | Module: php5phpdbg.dll
62 | ===========================
63 | msvcr110.dll
64 |
65 | Module: php_bz2.dll
66 | ===========================
67 | msvcr110.dll
68 |
69 | Module: php_com_dotnet.dll
70 | ===========================
71 | msvcr110.dll
72 |
73 | Module: php_curl.dll
74 | ===========================
75 | libeay32.dll
76 | ssleay32.dll
77 | libssh2.dll
78 | normaliz.dll
79 | msvcr110.dll
80 |
81 | Module: php_enchant.dll
82 | ===========================
83 | libenchant.dll
84 | msvcr110.dll
85 |
86 | Module: php_fileinfo.dll
87 | ===========================
88 | msvcr110.dll
89 |
90 | Module: php_gd2.dll
91 | ===========================
92 | msvcr110.dll
93 |
94 | Module: php_gettext.dll
95 | ===========================
96 | msvcr110.dll
97 |
98 | Module: php_gmp.dll
99 | ===========================
100 | msvcr110.dll
101 |
102 | Module: php_imap.dll
103 | ===========================
104 | msvcr110.dll
105 |
106 | Module: php_interbase.dll
107 | ===========================
108 | msvcr110.dll
109 |
110 | Module: php_intl.dll
111 | ===========================
112 | icuuc53.dll
113 | icuin53.dll
114 | icuio53.dll
115 | msvcr110.dll
116 | msvcp110.dll
117 |
118 | Module: php_ldap.dll
119 | ===========================
120 | libsasl.dll
121 | msvcr110.dll
122 | ssleay32.dll
123 | libeay32.dll
124 |
125 | Module: php_mbstring.dll
126 | ===========================
127 | msvcr110.dll
128 |
129 | Module: php_oci8_12c.dll
130 | ===========================
131 | msvcr110.dll
132 |
133 | Module: php_opcache.dll
134 | ===========================
135 | msvcr110.dll
136 |
137 | Module: php_openssl.dll
138 | ===========================
139 | ssleay32.dll
140 | libeay32.dll
141 | msvcr110.dll
142 |
143 | Module: php_pgsql.dll
144 | ===========================
145 | libpq.dll
146 | msvcr110.dll
147 |
148 | Module: php_shmop.dll
149 | ===========================
150 | msvcr110.dll
151 |
152 | Module: php_snmp.dll
153 | ===========================
154 | libeay32.dll
155 | msvcr110.dll
156 |
157 | Module: php_sockets.dll
158 | ===========================
159 | iphlpapi.dll
160 | msvcr110.dll
161 |
162 | Module: php_sqlite3.dll
163 | ===========================
164 | msvcr110.dll
165 |
166 | Module: php_sybase_ct.dll
167 | ===========================
168 | libsybcs.dll
169 | libsybct.dll
170 | msvcr110.dll
171 |
172 | Module: php_tidy.dll
173 | ===========================
174 | msvcr110.dll
175 |
176 | Module: php_exif.dll
177 | ===========================
178 | msvcr110.dll
179 |
180 | Module: php_mysql.dll
181 | ===========================
182 | msvcr110.dll
183 |
184 | Module: php_mysqli.dll
185 | ===========================
186 | msvcr110.dll
187 |
188 | Module: php_pdo_firebird.dll
189 | ===========================
190 | msvcr110.dll
191 |
192 | Module: php_pdo_mysql.dll
193 | ===========================
194 | msvcr110.dll
195 |
196 | Module: php_pdo_oci.dll
197 | ===========================
198 | msvcr110.dll
199 |
200 | Module: php_pdo_odbc.dll
201 | ===========================
202 | msvcr110.dll
203 |
204 | Module: php_pdo_pgsql.dll
205 | ===========================
206 | libpq.dll
207 | msvcr110.dll
208 |
209 | Module: php_pdo_sqlite.dll
210 | ===========================
211 | msvcr110.dll
212 |
213 | Module: php_soap.dll
214 | ===========================
215 | msvcr110.dll
216 |
217 | Module: php_xmlrpc.dll
218 | ===========================
219 | msvcr110.dll
220 |
221 | Module: php_xsl.dll
222 | ===========================
223 | msvcr110.dll
224 |
225 |
--------------------------------------------------------------------------------
/php/ssleay32.dll:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/php/ssleay32.dll
--------------------------------------------------------------------------------
/phpdesktop-chrome.exe:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/phpdesktop-chrome.exe
--------------------------------------------------------------------------------
/settings.json:
--------------------------------------------------------------------------------
1 | {
2 | "application": {
3 | "single_instance_guid": "",
4 | "dpi_aware": true
5 | },
6 | "debugging": {
7 | "show_console": true,
8 | "subprocess_show_console": false,
9 | "log_level": "DEBUG4",
10 | "log_file": "debug.log"
11 | },
12 | "main_window": {
13 | "title": "Name your app",
14 | "icon": "",
15 | "default_size": [1024, 768],
16 | "minimum_size": [800, 600],
17 | "maximum_size": [0, 0],
18 | "disable_maximize_button": false,
19 | "center_on_screen": true,
20 | "start_maximized": false,
21 | "start_fullscreen": false
22 | },
23 | "popup_window": {
24 | "icon": "",
25 | "fixed_title": "",
26 | "center_relative_to_parent": true,
27 | "default_size": [1024, 768]
28 | },
29 | "web_server": {
30 | "listen_on": ["127.0.0.1", 0],
31 | "www_directory": "www/public",
32 | "index_files": ["index.html", "index.php"],
33 | "cgi_interpreter": "php/php-cgi.exe",
34 | "cgi_extensions": ["php"],
35 | "cgi_temp_dir": "",
36 | "404_handler": "/index.php"
37 | },
38 | "chrome": {
39 | "log_file": "debug.log",
40 | "log_severity": "default",
41 | "cache_path": "webcache",
42 | "external_drag": true,
43 | "external_navigation": true,
44 | "reload_page_F5": true,
45 | "devtools_F12": true,
46 | "remote_debugging_port": 0,
47 | "command_line_switches": {},
48 | "enable_downloads": true,
49 | "context_menu": {
50 | "enable_menu": true,
51 | "navigation": true,
52 | "print": true,
53 | "view_source": true,
54 | "open_in_external_browser": true,
55 | "devtools": true
56 | }
57 | }
58 | }
59 |
--------------------------------------------------------------------------------
/webcache/Cookies:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/Cookies
--------------------------------------------------------------------------------
/webcache/Cookies-journal:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/Cookies-journal
--------------------------------------------------------------------------------
/webcache/GPUCache/data_0:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/GPUCache/data_0
--------------------------------------------------------------------------------
/webcache/GPUCache/data_1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/GPUCache/data_1
--------------------------------------------------------------------------------
/webcache/GPUCache/data_2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/GPUCache/data_2
--------------------------------------------------------------------------------
/webcache/GPUCache/data_3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/GPUCache/data_3
--------------------------------------------------------------------------------
/webcache/GPUCache/index:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/GPUCache/index
--------------------------------------------------------------------------------
/webcache/data_0:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/data_0
--------------------------------------------------------------------------------
/webcache/data_1:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/data_1
--------------------------------------------------------------------------------
/webcache/data_2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/data_2
--------------------------------------------------------------------------------
/webcache/data_3:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/data_3
--------------------------------------------------------------------------------
/webcache/index:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/webcache/index
--------------------------------------------------------------------------------
/www/.env.example:
--------------------------------------------------------------------------------
1 | APP_ENV=local
2 | APP_KEY=
3 | APP_DEBUG=true
4 | APP_LOG_LEVEL=debug
5 | APP_URL=http://localhost
6 |
7 | DB_CONNECTION=mysql
8 | DB_HOST=127.0.0.1
9 | DB_PORT=3306
10 | DB_DATABASE=homestead
11 | DB_USERNAME=homestead
12 | DB_PASSWORD=secret
13 |
14 | BROADCAST_DRIVER=log
15 | CACHE_DRIVER=file
16 | SESSION_DRIVER=file
17 | QUEUE_DRIVER=sync
18 |
19 | REDIS_HOST=127.0.0.1
20 | REDIS_PASSWORD=null
21 | REDIS_PORT=6379
22 |
23 | MAIL_DRIVER=smtp
24 | MAIL_HOST=mailtrap.io
25 | MAIL_PORT=2525
26 | MAIL_USERNAME=null
27 | MAIL_PASSWORD=null
28 | MAIL_ENCRYPTION=null
29 |
30 | PUSHER_APP_ID=
31 | PUSHER_KEY=
32 | PUSHER_SECRET=
33 |
--------------------------------------------------------------------------------
/www/.gitattributes:
--------------------------------------------------------------------------------
1 | * text=auto
2 | *.css linguist-vendored
3 | *.scss linguist-vendored
4 |
--------------------------------------------------------------------------------
/www/.gitignore:
--------------------------------------------------------------------------------
1 | /node_modules
2 | /public/storage
3 | /vendor
4 | /.idea
5 | Homestead.json
6 | Homestead.yaml
7 | .env
8 |
--------------------------------------------------------------------------------
/www/app/Console/Kernel.php:
--------------------------------------------------------------------------------
1 | command('inspire')
28 | // ->hourly();
29 | }
30 |
31 | /**
32 | * Register the Closure based commands for the application.
33 | *
34 | * @return void
35 | */
36 | protected function commands()
37 | {
38 | require base_path('routes/console.php');
39 | }
40 | }
41 |
--------------------------------------------------------------------------------
/www/app/Exceptions/Handler.php:
--------------------------------------------------------------------------------
1 | expectsJson()) {
60 | return response()->json(['error' => 'Unauthenticated.'], 401);
61 | }
62 |
63 | return redirect()->guest('login');
64 | }
65 | }
66 |
--------------------------------------------------------------------------------
/www/app/Http/Controllers/Auth/ForgotPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/www/app/Http/Controllers/Auth/LoginController.php:
--------------------------------------------------------------------------------
1 | middleware('guest', ['except' => 'logout']);
38 | }
39 | }
40 |
--------------------------------------------------------------------------------
/www/app/Http/Controllers/Auth/RegisterController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
40 | }
41 |
42 | /**
43 | * Get a validator for an incoming registration request.
44 | *
45 | * @param array $data
46 | * @return \Illuminate\Contracts\Validation\Validator
47 | */
48 | protected function validator(array $data)
49 | {
50 | return Validator::make($data, [
51 | 'name' => 'required|max:255',
52 | 'email' => 'required|email|max:255|unique:users',
53 | 'password' => 'required|min:6|confirmed',
54 | ]);
55 | }
56 |
57 | /**
58 | * Create a new user instance after a valid registration.
59 | *
60 | * @param array $data
61 | * @return User
62 | */
63 | protected function create(array $data)
64 | {
65 | return User::create([
66 | 'name' => $data['name'],
67 | 'email' => $data['email'],
68 | 'password' => bcrypt($data['password']),
69 | ]);
70 | }
71 | }
72 |
--------------------------------------------------------------------------------
/www/app/Http/Controllers/Auth/ResetPasswordController.php:
--------------------------------------------------------------------------------
1 | middleware('guest');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/www/app/Http/Controllers/Controller.php:
--------------------------------------------------------------------------------
1 | [
27 | \App\Http\Middleware\EncryptCookies::class,
28 | \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class,
29 | \Illuminate\Session\Middleware\StartSession::class,
30 | \Illuminate\View\Middleware\ShareErrorsFromSession::class,
31 | \App\Http\Middleware\VerifyCsrfToken::class,
32 | \Illuminate\Routing\Middleware\SubstituteBindings::class,
33 | ],
34 |
35 | 'api' => [
36 | 'throttle:60,1',
37 | 'bindings',
38 | ],
39 | ];
40 |
41 | /**
42 | * The application's route middleware.
43 | *
44 | * These middleware may be assigned to groups or used individually.
45 | *
46 | * @var array
47 | */
48 | protected $routeMiddleware = [
49 | 'auth' => \Illuminate\Auth\Middleware\Authenticate::class,
50 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class,
51 | 'bindings' => \Illuminate\Routing\Middleware\SubstituteBindings::class,
52 | 'can' => \Illuminate\Auth\Middleware\Authorize::class,
53 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class,
54 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class,
55 | ];
56 | }
57 |
--------------------------------------------------------------------------------
/www/app/Http/Middleware/EncryptCookies.php:
--------------------------------------------------------------------------------
1 | check()) {
21 | return redirect('/home');
22 | }
23 |
24 | return $next($request);
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/www/app/Http/Middleware/VerifyCsrfToken.php:
--------------------------------------------------------------------------------
1 | 'App\Policies\ModelPolicy',
17 | ];
18 |
19 | /**
20 | * Register any authentication / authorization services.
21 | *
22 | * @return void
23 | */
24 | public function boot()
25 | {
26 | $this->registerPolicies();
27 |
28 | //
29 | }
30 | }
31 |
--------------------------------------------------------------------------------
/www/app/Providers/BroadcastServiceProvider.php:
--------------------------------------------------------------------------------
1 | id === (int) $userId;
24 | });
25 | }
26 | }
27 |
--------------------------------------------------------------------------------
/www/app/Providers/EventServiceProvider.php:
--------------------------------------------------------------------------------
1 | [
17 | 'App\Listeners\EventListener',
18 | ],
19 | ];
20 |
21 | /**
22 | * Register any events for your application.
23 | *
24 | * @return void
25 | */
26 | public function boot()
27 | {
28 | parent::boot();
29 |
30 | //
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/www/app/Providers/RouteServiceProvider.php:
--------------------------------------------------------------------------------
1 | mapApiRoutes();
39 |
40 | $this->mapWebRoutes();
41 |
42 | //
43 | }
44 |
45 | /**
46 | * Define the "web" routes for the application.
47 | *
48 | * These routes all receive session state, CSRF protection, etc.
49 | *
50 | * @return void
51 | */
52 | protected function mapWebRoutes()
53 | {
54 | Route::group([
55 | 'middleware' => 'web',
56 | 'namespace' => $this->namespace,
57 | ], function ($router) {
58 | require base_path('routes/web.php');
59 | });
60 | }
61 |
62 | /**
63 | * Define the "api" routes for the application.
64 | *
65 | * These routes are typically stateless.
66 | *
67 | * @return void
68 | */
69 | protected function mapApiRoutes()
70 | {
71 | Route::group([
72 | 'middleware' => 'api',
73 | 'namespace' => $this->namespace,
74 | 'prefix' => 'api',
75 | ], function ($router) {
76 | require base_path('routes/api.php');
77 | });
78 | }
79 | }
80 |
--------------------------------------------------------------------------------
/www/app/User.php:
--------------------------------------------------------------------------------
1 | make(Illuminate\Contracts\Console\Kernel::class);
32 |
33 | $status = $kernel->handle(
34 | $input = new Symfony\Component\Console\Input\ArgvInput,
35 | new Symfony\Component\Console\Output\ConsoleOutput
36 | );
37 |
38 | /*
39 | |--------------------------------------------------------------------------
40 | | Shutdown The Application
41 | |--------------------------------------------------------------------------
42 | |
43 | | Once Artisan has finished running. We will fire off the shutdown events
44 | | so that any final work may be done by the application before we shut
45 | | down the process. This is the last thing to happen to the request.
46 | |
47 | */
48 |
49 | $kernel->terminate($input, $status);
50 |
51 | exit($status);
52 |
--------------------------------------------------------------------------------
/www/bootstrap/app.php:
--------------------------------------------------------------------------------
1 | singleton(
30 | Illuminate\Contracts\Http\Kernel::class,
31 | App\Http\Kernel::class
32 | );
33 |
34 | $app->singleton(
35 | Illuminate\Contracts\Console\Kernel::class,
36 | App\Console\Kernel::class
37 | );
38 |
39 | $app->singleton(
40 | Illuminate\Contracts\Debug\ExceptionHandler::class,
41 | App\Exceptions\Handler::class
42 | );
43 |
44 | /*
45 | |--------------------------------------------------------------------------
46 | | Return The Application
47 | |--------------------------------------------------------------------------
48 | |
49 | | This script returns the application instance. The instance is given to
50 | | the calling script so we can separate the building of the instances
51 | | from the actual running of the application and sending responses.
52 | |
53 | */
54 |
55 | return $app;
56 |
--------------------------------------------------------------------------------
/www/bootstrap/autoload.php:
--------------------------------------------------------------------------------
1 | =5.6.4",
9 | "laravel/framework": "5.3.*"
10 | },
11 | "require-dev": {
12 | "fzaninotto/faker": "~1.4",
13 | "mockery/mockery": "0.9.*",
14 | "phpunit/phpunit": "~5.0",
15 | "symfony/css-selector": "3.1.*",
16 | "symfony/dom-crawler": "3.1.*"
17 | },
18 | "autoload": {
19 | "classmap": [
20 | "database"
21 | ],
22 | "psr-4": {
23 | "App\\": "app/"
24 | }
25 | },
26 | "autoload-dev": {
27 | "classmap": [
28 | "tests/TestCase.php"
29 | ]
30 | },
31 | "scripts": {
32 | "post-root-package-install": [
33 | "php -r \"file_exists('.env') || copy('.env.example', '.env');\""
34 | ],
35 | "post-create-project-cmd": [
36 | "php artisan key:generate"
37 | ],
38 | "post-install-cmd": [
39 | "Illuminate\\Foundation\\ComposerScripts::postInstall",
40 | "php artisan optimize"
41 | ],
42 | "post-update-cmd": [
43 | "Illuminate\\Foundation\\ComposerScripts::postUpdate",
44 | "php artisan optimize"
45 | ]
46 | },
47 | "config": {
48 | "preferred-install": "dist"
49 | }
50 | }
51 |
--------------------------------------------------------------------------------
/www/config/app.php:
--------------------------------------------------------------------------------
1 | 'Laravel',
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://localhost'),
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 |
166 | /*
167 | * Package Service Providers...
168 | */
169 |
170 | //
171 |
172 | /*
173 | * Application Service Providers...
174 | */
175 | App\Providers\AppServiceProvider::class,
176 | App\Providers\AuthServiceProvider::class,
177 | // App\Providers\BroadcastServiceProvider::class,
178 | App\Providers\EventServiceProvider::class,
179 | App\Providers\RouteServiceProvider::class,
180 |
181 | ],
182 |
183 | /*
184 | |--------------------------------------------------------------------------
185 | | Class Aliases
186 | |--------------------------------------------------------------------------
187 | |
188 | | This array of class aliases will be registered when this application
189 | | is started. However, feel free to register as many as you wish as
190 | | the aliases are "lazy" loaded so they don't hinder performance.
191 | |
192 | */
193 |
194 | 'aliases' => [
195 |
196 | 'App' => Illuminate\Support\Facades\App::class,
197 | 'Artisan' => Illuminate\Support\Facades\Artisan::class,
198 | 'Auth' => Illuminate\Support\Facades\Auth::class,
199 | 'Blade' => Illuminate\Support\Facades\Blade::class,
200 | 'Bus' => Illuminate\Support\Facades\Bus::class,
201 | 'Cache' => Illuminate\Support\Facades\Cache::class,
202 | 'Config' => Illuminate\Support\Facades\Config::class,
203 | 'Cookie' => Illuminate\Support\Facades\Cookie::class,
204 | 'Crypt' => Illuminate\Support\Facades\Crypt::class,
205 | 'DB' => Illuminate\Support\Facades\DB::class,
206 | 'Eloquent' => Illuminate\Database\Eloquent\Model::class,
207 | 'Event' => Illuminate\Support\Facades\Event::class,
208 | 'File' => Illuminate\Support\Facades\File::class,
209 | 'Gate' => Illuminate\Support\Facades\Gate::class,
210 | 'Hash' => Illuminate\Support\Facades\Hash::class,
211 | 'Lang' => Illuminate\Support\Facades\Lang::class,
212 | 'Log' => Illuminate\Support\Facades\Log::class,
213 | 'Mail' => Illuminate\Support\Facades\Mail::class,
214 | 'Notification' => Illuminate\Support\Facades\Notification::class,
215 | 'Password' => Illuminate\Support\Facades\Password::class,
216 | 'Queue' => Illuminate\Support\Facades\Queue::class,
217 | 'Redirect' => Illuminate\Support\Facades\Redirect::class,
218 | 'Redis' => Illuminate\Support\Facades\Redis::class,
219 | 'Request' => Illuminate\Support\Facades\Request::class,
220 | 'Response' => Illuminate\Support\Facades\Response::class,
221 | 'Route' => Illuminate\Support\Facades\Route::class,
222 | 'Schema' => Illuminate\Support\Facades\Schema::class,
223 | 'Session' => Illuminate\Support\Facades\Session::class,
224 | 'Storage' => Illuminate\Support\Facades\Storage::class,
225 | 'URL' => Illuminate\Support\Facades\URL::class,
226 | 'Validator' => Illuminate\Support\Facades\Validator::class,
227 | 'View' => Illuminate\Support\Facades\View::class,
228 |
229 | ],
230 |
231 | ];
232 |
--------------------------------------------------------------------------------
/www/config/auth.php:
--------------------------------------------------------------------------------
1 | [
17 | 'guard' => 'web',
18 | 'passwords' => 'users',
19 | ],
20 |
21 | /*
22 | |--------------------------------------------------------------------------
23 | | Authentication Guards
24 | |--------------------------------------------------------------------------
25 | |
26 | | Next, you may define every authentication guard for your application.
27 | | Of course, a great default configuration has been defined for you
28 | | here which uses session storage and the Eloquent user provider.
29 | |
30 | | All authentication drivers have a user provider. This defines how the
31 | | users are actually retrieved out of your database or other storage
32 | | mechanisms used by this application to persist your user's data.
33 | |
34 | | Supported: "session", "token"
35 | |
36 | */
37 |
38 | 'guards' => [
39 | 'web' => [
40 | 'driver' => 'session',
41 | 'provider' => 'users',
42 | ],
43 |
44 | 'api' => [
45 | 'driver' => 'token',
46 | 'provider' => 'users',
47 | ],
48 | ],
49 |
50 | /*
51 | |--------------------------------------------------------------------------
52 | | User Providers
53 | |--------------------------------------------------------------------------
54 | |
55 | | All authentication drivers have a user provider. This defines how the
56 | | users are actually retrieved out of your database or other storage
57 | | mechanisms used by this application to persist your user's data.
58 | |
59 | | If you have multiple user tables or models you may configure multiple
60 | | sources which represent each model / table. These sources may then
61 | | be assigned to any extra authentication guards you have defined.
62 | |
63 | | Supported: "database", "eloquent"
64 | |
65 | */
66 |
67 | 'providers' => [
68 | 'users' => [
69 | 'driver' => 'eloquent',
70 | 'model' => App\User::class,
71 | ],
72 |
73 | // 'users' => [
74 | // 'driver' => 'database',
75 | // 'table' => 'users',
76 | // ],
77 | ],
78 |
79 | /*
80 | |--------------------------------------------------------------------------
81 | | Resetting Passwords
82 | |--------------------------------------------------------------------------
83 | |
84 | | You may specify multiple password reset configurations if you have more
85 | | than one user table or model in the application and you want to have
86 | | separate password reset settings based on the specific user types.
87 | |
88 | | The expire time is the number of minutes that the reset token should be
89 | | considered valid. This security feature keeps tokens short-lived so
90 | | they have less time to be guessed. You may change this as needed.
91 | |
92 | */
93 |
94 | 'passwords' => [
95 | 'users' => [
96 | 'provider' => 'users',
97 | 'table' => 'password_resets',
98 | 'expire' => 60,
99 | ],
100 | ],
101 |
102 | ];
103 |
--------------------------------------------------------------------------------
/www/config/broadcasting.php:
--------------------------------------------------------------------------------
1 | env('BROADCAST_DRIVER', 'null'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Broadcast Connections
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may define all of the broadcast connections that will be used
26 | | to broadcast events to other systems or over websockets. Samples of
27 | | each available type of connection are provided inside this array.
28 | |
29 | */
30 |
31 | 'connections' => [
32 |
33 | 'pusher' => [
34 | 'driver' => 'pusher',
35 | 'key' => env('PUSHER_KEY'),
36 | 'secret' => env('PUSHER_SECRET'),
37 | 'app_id' => env('PUSHER_APP_ID'),
38 | 'options' => [
39 | //
40 | ],
41 | ],
42 |
43 | 'redis' => [
44 | 'driver' => 'redis',
45 | 'connection' => 'default',
46 | ],
47 |
48 | 'log' => [
49 | 'driver' => 'log',
50 | ],
51 |
52 | 'null' => [
53 | 'driver' => 'null',
54 | ],
55 |
56 | ],
57 |
58 | ];
59 |
--------------------------------------------------------------------------------
/www/config/cache.php:
--------------------------------------------------------------------------------
1 | env('CACHE_DRIVER', 'file'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Cache Stores
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may define all of the cache "stores" for your application as
26 | | well as their drivers. You may even define multiple stores for the
27 | | same cache driver to group types of items stored in your caches.
28 | |
29 | */
30 |
31 | 'stores' => [
32 |
33 | 'apc' => [
34 | 'driver' => 'apc',
35 | ],
36 |
37 | 'array' => [
38 | 'driver' => 'array',
39 | ],
40 |
41 | 'database' => [
42 | 'driver' => 'database',
43 | 'table' => 'cache',
44 | 'connection' => null,
45 | ],
46 |
47 | 'file' => [
48 | 'driver' => 'file',
49 | 'path' => storage_path('framework/cache'),
50 | ],
51 |
52 | 'memcached' => [
53 | 'driver' => 'memcached',
54 | 'persistent_id' => env('MEMCACHED_PERSISTENT_ID'),
55 | 'sasl' => [
56 | env('MEMCACHED_USERNAME'),
57 | env('MEMCACHED_PASSWORD'),
58 | ],
59 | 'options' => [
60 | // Memcached::OPT_CONNECT_TIMEOUT => 2000,
61 | ],
62 | 'servers' => [
63 | [
64 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'),
65 | 'port' => env('MEMCACHED_PORT', 11211),
66 | 'weight' => 100,
67 | ],
68 | ],
69 | ],
70 |
71 | 'redis' => [
72 | 'driver' => 'redis',
73 | 'connection' => 'default',
74 | ],
75 |
76 | ],
77 |
78 | /*
79 | |--------------------------------------------------------------------------
80 | | Cache Key Prefix
81 | |--------------------------------------------------------------------------
82 | |
83 | | When utilizing a RAM based store such as APC or Memcached, there might
84 | | be other applications utilizing the same cache. So, we'll specify a
85 | | value to get prefixed to all our keys so we can avoid collisions.
86 | |
87 | */
88 |
89 | 'prefix' => 'laravel',
90 |
91 | ];
92 |
--------------------------------------------------------------------------------
/www/config/compile.php:
--------------------------------------------------------------------------------
1 | [
17 | //
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled File Providers
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may list service providers which define a "compiles" function
26 | | that returns additional files that should be compiled, providing an
27 | | easy way to get common files from any packages you are utilizing.
28 | |
29 | */
30 |
31 | 'providers' => [
32 | //
33 | ],
34 |
35 | ];
36 |
--------------------------------------------------------------------------------
/www/config/database.php:
--------------------------------------------------------------------------------
1 | PDO::FETCH_OBJ,
17 |
18 | /*
19 | |--------------------------------------------------------------------------
20 | | Default Database Connection Name
21 | |--------------------------------------------------------------------------
22 | |
23 | | Here you may specify which of the database connections below you wish
24 | | to use as your default connection for all database work. Of course
25 | | you may use many connections at once using the Database library.
26 | |
27 | */
28 |
29 | 'default' => env('DB_CONNECTION', 'sqlite'),
30 |
31 | /*
32 | |--------------------------------------------------------------------------
33 | | Database Connections
34 | |--------------------------------------------------------------------------
35 | |
36 | | Here are each of the database connections setup for your application.
37 | | Of course, examples of configuring each database platform that is
38 | | supported by Laravel is shown below to make development simple.
39 | |
40 | |
41 | | All database work in Laravel is done through the PHP PDO facilities
42 | | so make sure you have the driver for your particular database of
43 | | choice installed on your machine before you begin development.
44 | |
45 | */
46 |
47 | 'connections' => [
48 |
49 | 'sqlite' => [
50 | 'driver' => 'sqlite',
51 | 'database' => database_path('database.sqlite'),
52 | 'prefix' => '',
53 | ],
54 |
55 | 'mysql' => [
56 | 'driver' => 'mysql',
57 | 'host' => env('DB_HOST', 'localhost'),
58 | 'port' => env('DB_PORT', '3306'),
59 | 'database' => env('DB_DATABASE', 'forge'),
60 | 'username' => env('DB_USERNAME', 'forge'),
61 | 'password' => env('DB_PASSWORD', ''),
62 | 'charset' => 'utf8',
63 | 'collation' => 'utf8_unicode_ci',
64 | 'prefix' => '',
65 | 'strict' => true,
66 | 'engine' => null,
67 | ],
68 |
69 | 'pgsql' => [
70 | 'driver' => 'pgsql',
71 | 'host' => env('DB_HOST', 'localhost'),
72 | 'port' => env('DB_PORT', '5432'),
73 | 'database' => env('DB_DATABASE', 'forge'),
74 | 'username' => env('DB_USERNAME', 'forge'),
75 | 'password' => env('DB_PASSWORD', ''),
76 | 'charset' => 'utf8',
77 | 'prefix' => '',
78 | 'schema' => 'public',
79 | 'sslmode' => 'prefer',
80 | ],
81 |
82 | ],
83 |
84 | /*
85 | |--------------------------------------------------------------------------
86 | | Migration Repository Table
87 | |--------------------------------------------------------------------------
88 | |
89 | | This table keeps track of all the migrations that have already run for
90 | | your application. Using this information, we can determine which of
91 | | the migrations on disk haven't actually been run in the database.
92 | |
93 | */
94 |
95 | 'migrations' => 'migrations',
96 |
97 | /*
98 | |--------------------------------------------------------------------------
99 | | Redis Databases
100 | |--------------------------------------------------------------------------
101 | |
102 | | Redis is an open source, fast, and advanced key-value store that also
103 | | provides a richer set of commands than a typical key-value systems
104 | | such as APC or Memcached. Laravel makes it easy to dig right in.
105 | |
106 | */
107 |
108 | 'redis' => [
109 |
110 | 'cluster' => false,
111 |
112 | 'default' => [
113 | 'host' => env('REDIS_HOST', 'localhost'),
114 | 'password' => env('REDIS_PASSWORD', null),
115 | 'port' => env('REDIS_PORT', 6379),
116 | 'database' => 0,
117 | ],
118 |
119 | ],
120 |
121 | ];
122 |
--------------------------------------------------------------------------------
/www/config/filesystems.php:
--------------------------------------------------------------------------------
1 | 'local',
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Default Cloud Filesystem Disk
23 | |--------------------------------------------------------------------------
24 | |
25 | | Many applications store files both locally and in the cloud. For this
26 | | reason, you may specify a default "cloud" driver here. This driver
27 | | will be bound as the Cloud disk implementation in the container.
28 | |
29 | */
30 |
31 | 'cloud' => 's3',
32 |
33 | /*
34 | |--------------------------------------------------------------------------
35 | | Filesystem Disks
36 | |--------------------------------------------------------------------------
37 | |
38 | | Here you may configure as many filesystem "disks" as you wish, and you
39 | | may even configure multiple disks of the same driver. Defaults have
40 | | been setup for each driver as an example of the required options.
41 | |
42 | */
43 |
44 | 'disks' => [
45 |
46 | 'local' => [
47 | 'driver' => 'local',
48 | 'root' => storage_path('app'),
49 | ],
50 |
51 | 'public' => [
52 | 'driver' => 'local',
53 | 'root' => storage_path('app/public'),
54 | 'visibility' => 'public',
55 | ],
56 |
57 | 's3' => [
58 | 'driver' => 's3',
59 | 'key' => 'your-key',
60 | 'secret' => 'your-secret',
61 | 'region' => 'your-region',
62 | 'bucket' => 'your-bucket',
63 | ],
64 |
65 | ],
66 |
67 | ];
68 |
--------------------------------------------------------------------------------
/www/config/mail.php:
--------------------------------------------------------------------------------
1 | env('MAIL_DRIVER', 'smtp'),
20 |
21 | /*
22 | |--------------------------------------------------------------------------
23 | | SMTP Host Address
24 | |--------------------------------------------------------------------------
25 | |
26 | | Here you may provide the host address of the SMTP server used by your
27 | | applications. A default option is provided that is compatible with
28 | | the Mailgun mail service which will provide reliable deliveries.
29 | |
30 | */
31 |
32 | 'host' => env('MAIL_HOST', 'smtp.mailgun.org'),
33 |
34 | /*
35 | |--------------------------------------------------------------------------
36 | | SMTP Host Port
37 | |--------------------------------------------------------------------------
38 | |
39 | | This is the SMTP port used by your application to deliver e-mails to
40 | | users of the application. Like the host we have set this value to
41 | | stay compatible with the Mailgun e-mail application by default.
42 | |
43 | */
44 |
45 | 'port' => env('MAIL_PORT', 587),
46 |
47 | /*
48 | |--------------------------------------------------------------------------
49 | | Global "From" Address
50 | |--------------------------------------------------------------------------
51 | |
52 | | You may wish for all e-mails sent by your application to be sent from
53 | | the same address. Here, you may specify a name and address that is
54 | | used globally for all e-mails that are sent by your application.
55 | |
56 | */
57 |
58 | 'from' => [
59 | 'address' => 'hello@example.com',
60 | 'name' => 'Example',
61 | ],
62 |
63 | /*
64 | |--------------------------------------------------------------------------
65 | | E-Mail Encryption Protocol
66 | |--------------------------------------------------------------------------
67 | |
68 | | Here you may specify the encryption protocol that should be used when
69 | | the application send e-mail messages. A sensible default using the
70 | | transport layer security protocol should provide great security.
71 | |
72 | */
73 |
74 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'),
75 |
76 | /*
77 | |--------------------------------------------------------------------------
78 | | SMTP Server Username
79 | |--------------------------------------------------------------------------
80 | |
81 | | If your SMTP server requires a username for authentication, you should
82 | | set it here. This will get used to authenticate with your server on
83 | | connection. You may also set the "password" value below this one.
84 | |
85 | */
86 |
87 | 'username' => env('MAIL_USERNAME'),
88 |
89 | /*
90 | |--------------------------------------------------------------------------
91 | | SMTP Server Password
92 | |--------------------------------------------------------------------------
93 | |
94 | | Here you may set the password required by your SMTP server to send out
95 | | messages from your application. This will be given to the server on
96 | | connection so that the application will be able to send messages.
97 | |
98 | */
99 |
100 | 'password' => env('MAIL_PASSWORD'),
101 |
102 | /*
103 | |--------------------------------------------------------------------------
104 | | Sendmail System Path
105 | |--------------------------------------------------------------------------
106 | |
107 | | When using the "sendmail" driver to send e-mails, we will need to know
108 | | the path to where Sendmail lives on this server. A default path has
109 | | been provided here, which will work well on most of your systems.
110 | |
111 | */
112 |
113 | 'sendmail' => '/usr/sbin/sendmail -bs',
114 |
115 | ];
116 |
--------------------------------------------------------------------------------
/www/config/queue.php:
--------------------------------------------------------------------------------
1 | env('QUEUE_DRIVER', 'sync'),
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Queue Connections
23 | |--------------------------------------------------------------------------
24 | |
25 | | Here you may configure the connection information for each server that
26 | | is used by your application. A default configuration has been added
27 | | for each back-end shipped with Laravel. You are free to add more.
28 | |
29 | */
30 |
31 | 'connections' => [
32 |
33 | 'sync' => [
34 | 'driver' => 'sync',
35 | ],
36 |
37 | 'database' => [
38 | 'driver' => 'database',
39 | 'table' => 'jobs',
40 | 'queue' => 'default',
41 | 'retry_after' => 90,
42 | ],
43 |
44 | 'beanstalkd' => [
45 | 'driver' => 'beanstalkd',
46 | 'host' => 'localhost',
47 | 'queue' => 'default',
48 | 'retry_after' => 90,
49 | ],
50 |
51 | 'sqs' => [
52 | 'driver' => 'sqs',
53 | 'key' => 'your-public-key',
54 | 'secret' => 'your-secret-key',
55 | 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id',
56 | 'queue' => 'your-queue-name',
57 | 'region' => 'us-east-1',
58 | ],
59 |
60 | 'redis' => [
61 | 'driver' => 'redis',
62 | 'connection' => 'default',
63 | 'queue' => 'default',
64 | 'retry_after' => 90,
65 | ],
66 |
67 | ],
68 |
69 | /*
70 | |--------------------------------------------------------------------------
71 | | Failed Queue Jobs
72 | |--------------------------------------------------------------------------
73 | |
74 | | These options configure the behavior of failed queue job logging so you
75 | | can control which database and table are used to store the jobs that
76 | | have failed. You may change them to any database / table you wish.
77 | |
78 | */
79 |
80 | 'failed' => [
81 | 'database' => env('DB_CONNECTION', 'mysql'),
82 | 'table' => 'failed_jobs',
83 | ],
84 |
85 | ];
86 |
--------------------------------------------------------------------------------
/www/config/services.php:
--------------------------------------------------------------------------------
1 | [
18 | 'domain' => env('MAILGUN_DOMAIN'),
19 | 'secret' => env('MAILGUN_SECRET'),
20 | ],
21 |
22 | 'ses' => [
23 | 'key' => env('SES_KEY'),
24 | 'secret' => env('SES_SECRET'),
25 | 'region' => 'us-east-1',
26 | ],
27 |
28 | 'sparkpost' => [
29 | 'secret' => env('SPARKPOST_SECRET'),
30 | ],
31 |
32 | 'stripe' => [
33 | 'model' => App\User::class,
34 | 'key' => env('STRIPE_KEY'),
35 | 'secret' => env('STRIPE_SECRET'),
36 | ],
37 |
38 | ];
39 |
--------------------------------------------------------------------------------
/www/config/session.php:
--------------------------------------------------------------------------------
1 | env('SESSION_DRIVER', 'file'),
20 |
21 | /*
22 | |--------------------------------------------------------------------------
23 | | Session Lifetime
24 | |--------------------------------------------------------------------------
25 | |
26 | | Here you may specify the number of minutes that you wish the session
27 | | to be allowed to remain idle before it expires. If you want them
28 | | to immediately expire on the browser closing, set that option.
29 | |
30 | */
31 |
32 | 'lifetime' => 120,
33 |
34 | 'expire_on_close' => false,
35 |
36 | /*
37 | |--------------------------------------------------------------------------
38 | | Session Encryption
39 | |--------------------------------------------------------------------------
40 | |
41 | | This option allows you to easily specify that all of your session data
42 | | should be encrypted before it is stored. All encryption will be run
43 | | automatically by Laravel and you can use the Session like normal.
44 | |
45 | */
46 |
47 | 'encrypt' => false,
48 |
49 | /*
50 | |--------------------------------------------------------------------------
51 | | Session File Location
52 | |--------------------------------------------------------------------------
53 | |
54 | | When using the native session driver, we need a location where session
55 | | files may be stored. A default has been set for you but a different
56 | | location may be specified. This is only needed for file sessions.
57 | |
58 | */
59 |
60 | 'files' => storage_path('framework/sessions'),
61 |
62 | /*
63 | |--------------------------------------------------------------------------
64 | | Session Database Connection
65 | |--------------------------------------------------------------------------
66 | |
67 | | When using the "database" or "redis" session drivers, you may specify a
68 | | connection that should be used to manage these sessions. This should
69 | | correspond to a connection in your database configuration options.
70 | |
71 | */
72 |
73 | 'connection' => null,
74 |
75 | /*
76 | |--------------------------------------------------------------------------
77 | | Session Database Table
78 | |--------------------------------------------------------------------------
79 | |
80 | | When using the "database" session driver, you may specify the table we
81 | | should use to manage the sessions. Of course, a sensible default is
82 | | provided for you; however, you are free to change this as needed.
83 | |
84 | */
85 |
86 | 'table' => 'sessions',
87 |
88 | /*
89 | |--------------------------------------------------------------------------
90 | | Session Cache Store
91 | |--------------------------------------------------------------------------
92 | |
93 | | When using the "apc" or "memcached" session drivers, you may specify a
94 | | cache store that should be used for these sessions. This value must
95 | | correspond with one of the application's configured cache stores.
96 | |
97 | */
98 |
99 | 'store' => null,
100 |
101 | /*
102 | |--------------------------------------------------------------------------
103 | | Session Sweeping Lottery
104 | |--------------------------------------------------------------------------
105 | |
106 | | Some session drivers must manually sweep their storage location to get
107 | | rid of old sessions from storage. Here are the chances that it will
108 | | happen on a given request. By default, the odds are 2 out of 100.
109 | |
110 | */
111 |
112 | 'lottery' => [2, 100],
113 |
114 | /*
115 | |--------------------------------------------------------------------------
116 | | Session Cookie Name
117 | |--------------------------------------------------------------------------
118 | |
119 | | Here you may change the name of the cookie used to identify a session
120 | | instance by ID. The name specified here will get used every time a
121 | | new session cookie is created by the framework for every driver.
122 | |
123 | */
124 |
125 | 'cookie' => 'laravel_session',
126 |
127 | /*
128 | |--------------------------------------------------------------------------
129 | | Session Cookie Path
130 | |--------------------------------------------------------------------------
131 | |
132 | | The session cookie path determines the path for which the cookie will
133 | | be regarded as available. Typically, this will be the root path of
134 | | your application but you are free to change this when necessary.
135 | |
136 | */
137 |
138 | 'path' => '/',
139 |
140 | /*
141 | |--------------------------------------------------------------------------
142 | | Session Cookie Domain
143 | |--------------------------------------------------------------------------
144 | |
145 | | Here you may change the domain of the cookie used to identify a session
146 | | in your application. This will determine which domains the cookie is
147 | | available to in your application. A sensible default has been set.
148 | |
149 | */
150 |
151 | 'domain' => env('SESSION_DOMAIN', null),
152 |
153 | /*
154 | |--------------------------------------------------------------------------
155 | | HTTPS Only Cookies
156 | |--------------------------------------------------------------------------
157 | |
158 | | By setting this option to true, session cookies will only be sent back
159 | | to the server if the browser has a HTTPS connection. This will keep
160 | | the cookie from being sent to you if it can not be done securely.
161 | |
162 | */
163 |
164 | 'secure' => env('SESSION_SECURE_COOKIE', false),
165 |
166 | /*
167 | |--------------------------------------------------------------------------
168 | | HTTP Access Only
169 | |--------------------------------------------------------------------------
170 | |
171 | | Setting this value to true will prevent JavaScript from accessing the
172 | | value of the cookie and the cookie will only be accessible through
173 | | the HTTP protocol. You are free to modify this option if needed.
174 | |
175 | */
176 |
177 | 'http_only' => true,
178 |
179 | ];
180 |
--------------------------------------------------------------------------------
/www/config/view.php:
--------------------------------------------------------------------------------
1 | [
17 | realpath(base_path('resources/views')),
18 | ],
19 |
20 | /*
21 | |--------------------------------------------------------------------------
22 | | Compiled View Path
23 | |--------------------------------------------------------------------------
24 | |
25 | | This option determines where all the compiled Blade templates will be
26 | | stored for your application. Typically, this is within the storage
27 | | directory. However, as usual, you are free to change this value.
28 | |
29 | */
30 |
31 | 'compiled' => realpath(storage_path('framework/views')),
32 |
33 | ];
34 |
--------------------------------------------------------------------------------
/www/database/.gitignore:
--------------------------------------------------------------------------------
1 | *.sqlite
2 |
--------------------------------------------------------------------------------
/www/database/factories/ModelFactory.php:
--------------------------------------------------------------------------------
1 | define(App\User::class, function (Faker\Generator $faker) {
15 | static $password;
16 |
17 | return [
18 | 'name' => $faker->name,
19 | 'email' => $faker->unique()->safeEmail,
20 | 'password' => $password ?: $password = bcrypt('secret'),
21 | 'remember_token' => str_random(10),
22 | ];
23 | });
24 |
--------------------------------------------------------------------------------
/www/database/migrations/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/www/database/migrations/2014_10_12_000000_create_users_table.php:
--------------------------------------------------------------------------------
1 | increments('id');
18 | $table->string('name');
19 | $table->string('email')->unique();
20 | $table->string('password');
21 | $table->rememberToken();
22 | $table->timestamps();
23 | });
24 | }
25 |
26 | /**
27 | * Reverse the migrations.
28 | *
29 | * @return void
30 | */
31 | public function down()
32 | {
33 | Schema::drop('users');
34 | }
35 | }
36 |
--------------------------------------------------------------------------------
/www/database/migrations/2014_10_12_100000_create_password_resets_table.php:
--------------------------------------------------------------------------------
1 | string('email')->index();
18 | $table->string('token')->index();
19 | $table->timestamp('created_at')->nullable();
20 | });
21 | }
22 |
23 | /**
24 | * Reverse the migrations.
25 | *
26 | * @return void
27 | */
28 | public function down()
29 | {
30 | Schema::drop('password_resets');
31 | }
32 | }
33 |
--------------------------------------------------------------------------------
/www/database/seeds/.gitkeep:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/www/database/seeds/DatabaseSeeder.php:
--------------------------------------------------------------------------------
1 | call(UsersTableSeeder::class);
15 | }
16 | }
17 |
--------------------------------------------------------------------------------
/www/gulpfile.js:
--------------------------------------------------------------------------------
1 | const elixir = require('laravel-elixir');
2 |
3 | require('laravel-elixir-vue-2');
4 |
5 | /*
6 | |--------------------------------------------------------------------------
7 | | Elixir Asset Management
8 | |--------------------------------------------------------------------------
9 | |
10 | | Elixir provides a clean, fluent API for defining some basic Gulp tasks
11 | | for your Laravel application. By default, we are compiling the Sass
12 | | file for our application, as well as publishing vendor resources.
13 | |
14 | */
15 |
16 | elixir(mix => {
17 | mix.sass('app.scss')
18 | .webpack('app.js');
19 | });
20 |
--------------------------------------------------------------------------------
/www/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "private": true,
3 | "scripts": {
4 | "prod": "gulp --production",
5 | "dev": "gulp watch"
6 | },
7 | "devDependencies": {
8 | "bootstrap-sass": "^3.3.7",
9 | "gulp": "^3.9.1",
10 | "jquery": "^3.1.0",
11 | "laravel-elixir": "^6.0.0-9",
12 | "laravel-elixir-vue-2": "^0.2.0",
13 | "laravel-elixir-webpack-official": "^1.0.2",
14 | "lodash": "^4.16.2",
15 | "vue": "^2.0.1",
16 | "vue-resource": "^1.0.3"
17 | }
18 | }
19 |
--------------------------------------------------------------------------------
/www/phpunit.xml:
--------------------------------------------------------------------------------
1 |
2 |
11 |
12 |
13 | ./tests
14 |
15 |
16 |
17 |
18 | ./app
19 |
20 |
21 |
22 |
23 |
24 |
25 |
26 |
27 |
28 |
--------------------------------------------------------------------------------
/www/public/.htaccess:
--------------------------------------------------------------------------------
1 |
2 |
3 | Options -MultiViews
4 |
5 |
6 | RewriteEngine On
7 |
8 | # Redirect Trailing Slashes If Not A Folder...
9 | RewriteCond %{REQUEST_FILENAME} !-d
10 | RewriteRule ^(.*)/$ /$1 [L,R=301]
11 |
12 | # Handle Front Controller...
13 | RewriteCond %{REQUEST_FILENAME} !-d
14 | RewriteCond %{REQUEST_FILENAME} !-f
15 | RewriteRule ^ index.php [L]
16 |
17 | # Handle Authorization Header
18 | RewriteCond %{HTTP:Authorization} .
19 | RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]
20 |
21 |
--------------------------------------------------------------------------------
/www/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/williamnwogbo/laravel_desktop/9e05f969f478a9b3a01e65113d3e5d2fd2aeeb88/www/public/favicon.ico
--------------------------------------------------------------------------------
/www/public/index.php:
--------------------------------------------------------------------------------
1 |
8 | */
9 |
10 | /*
11 | |--------------------------------------------------------------------------
12 | | Register The Auto Loader
13 | |--------------------------------------------------------------------------
14 | |
15 | | Composer provides a convenient, automatically generated class loader for
16 | | our application. We just need to utilize it! We'll simply require it
17 | | into the script here so that we don't have to worry about manual
18 | | loading any of our classes later on. It feels nice to relax.
19 | |
20 | */
21 |
22 | require __DIR__.'/../bootstrap/autoload.php';
23 |
24 | /*
25 | |--------------------------------------------------------------------------
26 | | Turn On The Lights
27 | |--------------------------------------------------------------------------
28 | |
29 | | We need to illuminate PHP development, so let us turn on the lights.
30 | | This bootstraps the framework and gets it ready for use, then it
31 | | will load up this application so that we can run it and send
32 | | the responses back to the browser and delight our users.
33 | |
34 | */
35 |
36 | $app = require_once __DIR__.'/../bootstrap/app.php';
37 |
38 | /*
39 | |--------------------------------------------------------------------------
40 | | Run The Application
41 | |--------------------------------------------------------------------------
42 | |
43 | | Once we have the application, we can handle the incoming request
44 | | through the kernel, and send the associated response back to
45 | | the client's browser allowing them to enjoy the creative
46 | | and wonderful application we have prepared for them.
47 | |
48 | */
49 |
50 | $kernel = $app->make(Illuminate\Contracts\Http\Kernel::class);
51 |
52 | $response = $kernel->handle(
53 | $request = Illuminate\Http\Request::capture()
54 | );
55 |
56 | $response->send();
57 |
58 | $kernel->terminate($request, $response);
59 |
--------------------------------------------------------------------------------
/www/public/robots.txt:
--------------------------------------------------------------------------------
1 | User-agent: *
2 | Disallow:
3 |
--------------------------------------------------------------------------------
/www/public/web.config:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
20 |
21 |
22 |
23 |
24 |
--------------------------------------------------------------------------------
/www/readme.md:
--------------------------------------------------------------------------------
1 | # Laravel PHP Framework
2 |
3 | [](https://travis-ci.org/laravel/framework)
4 | [](https://packagist.org/packages/laravel/framework)
5 | [](https://packagist.org/packages/laravel/framework)
6 | [](https://packagist.org/packages/laravel/framework)
7 | [](https://packagist.org/packages/laravel/framework)
8 |
9 | Laravel is a web application framework with expressive, elegant syntax. We believe development must be an enjoyable, creative experience to be truly fulfilling. Laravel attempts to take the pain out of development by easing common tasks used in the majority of web projects, such as authentication, routing, sessions, queueing, and caching.
10 |
11 | Laravel is accessible, yet powerful, providing tools needed for large, robust applications. A superb inversion of control container, expressive migration system, and tightly integrated unit testing support give you the tools you need to build any application with which you are tasked.
12 |
13 | ## Official Documentation
14 |
15 | Documentation for the framework can be found on the [Laravel website](http://laravel.com/docs).
16 |
17 | ## Contributing
18 |
19 | Thank you for considering contributing to the Laravel framework! The contribution guide can be found in the [Laravel documentation](http://laravel.com/docs/contributions).
20 |
21 | ## Security Vulnerabilities
22 |
23 | If you discover a security vulnerability within Laravel, please send an e-mail to Taylor Otwell at taylor@laravel.com. All security vulnerabilities will be promptly addressed.
24 |
25 | ## License
26 |
27 | The Laravel framework is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).
28 |
--------------------------------------------------------------------------------
/www/resources/assets/js/app.js:
--------------------------------------------------------------------------------
1 |
2 | /**
3 | * First we will load all of this project's JavaScript dependencies which
4 | * include Vue and Vue Resource. This gives a great starting point for
5 | * building robust, powerful web applications using Vue and Laravel.
6 | */
7 |
8 | require('./bootstrap');
9 |
10 | /**
11 | * Next, we will create a fresh Vue application instance and attach it to
12 | * the body of the page. From here, you may begin adding components to
13 | * the application, or feel free to tweak this setup for your needs.
14 | */
15 |
16 | Vue.component('example', require('./components/Example.vue'));
17 |
18 | const app = new Vue({
19 | el: '#app'
20 | });
21 |
--------------------------------------------------------------------------------
/www/resources/assets/js/bootstrap.js:
--------------------------------------------------------------------------------
1 |
2 | window._ = require('lodash');
3 |
4 | /**
5 | * We'll load jQuery and the Bootstrap jQuery plugin which provides support
6 | * for JavaScript based Bootstrap features such as modals and tabs. This
7 | * code may be modified to fit the specific needs of your application.
8 | */
9 |
10 | window.$ = window.jQuery = require('jquery');
11 | require('bootstrap-sass');
12 |
13 | /**
14 | * Vue is a modern JavaScript library for building interactive web interfaces
15 | * using reactive data binding and reusable components. Vue's API is clean
16 | * and simple, leaving you to focus on building your next great project.
17 | */
18 |
19 | window.Vue = require('vue');
20 | require('vue-resource');
21 |
22 | /**
23 | * We'll register a HTTP interceptor to attach the "CSRF" header to each of
24 | * the outgoing requests issued by this application. The CSRF middleware
25 | * included with Laravel will automatically verify the header's value.
26 | */
27 |
28 | Vue.http.interceptors.push((request, next) => {
29 | request.headers.set('X-CSRF-TOKEN', Laravel.csrfToken);
30 |
31 | next();
32 | });
33 |
34 | /**
35 | * Echo exposes an expressive API for subscribing to channels and listening
36 | * for events that are broadcast by Laravel. Echo and event broadcasting
37 | * allows your team to easily build robust real-time web applications.
38 | */
39 |
40 | // import Echo from "laravel-echo"
41 |
42 | // window.Echo = new Echo({
43 | // broadcaster: 'pusher',
44 | // key: 'your-pusher-key'
45 | // });
46 |
--------------------------------------------------------------------------------
/www/resources/assets/js/components/Example.vue:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 |
6 |
Example Component
7 |
8 |
9 | I'm an example component!
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
24 |
--------------------------------------------------------------------------------
/www/resources/assets/sass/_variables.scss:
--------------------------------------------------------------------------------
1 |
2 | // Body
3 | $body-bg: #f5f8fa;
4 |
5 | // Borders
6 | $laravel-border-color: darken($body-bg, 10%);
7 | $list-group-border: $laravel-border-color;
8 | $navbar-default-border: $laravel-border-color;
9 | $panel-default-border: $laravel-border-color;
10 | $panel-inner-border: $laravel-border-color;
11 |
12 | // Brands
13 | $brand-primary: #3097D1;
14 | $brand-info: #8eb4cb;
15 | $brand-success: #2ab27b;
16 | $brand-warning: #cbb956;
17 | $brand-danger: #bf5329;
18 |
19 | // Typography
20 | $font-family-sans-serif: "Raleway", sans-serif;
21 | $font-size-base: 14px;
22 | $line-height-base: 1.6;
23 | $text-color: #636b6f;
24 |
25 | // Navbar
26 | $navbar-default-bg: #fff;
27 |
28 | // Buttons
29 | $btn-default-color: $text-color;
30 |
31 | // Inputs
32 | $input-border: lighten($text-color, 40%);
33 | $input-border-focus: lighten($brand-primary, 25%);
34 | $input-color-placeholder: lighten($text-color, 30%);
35 |
36 | // Panels
37 | $panel-default-heading-bg: #fff;
38 |
--------------------------------------------------------------------------------
/www/resources/assets/sass/app.scss:
--------------------------------------------------------------------------------
1 |
2 | // Fonts
3 | @import url(https://fonts.googleapis.com/css?family=Raleway:300,400,600);
4 |
5 | // Variables
6 | @import "variables";
7 |
8 | // Bootstrap
9 | @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap";
10 |
--------------------------------------------------------------------------------
/www/resources/lang/en/auth.php:
--------------------------------------------------------------------------------
1 | 'These credentials do not match our records.',
17 | 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/www/resources/lang/en/pagination.php:
--------------------------------------------------------------------------------
1 | '« Previous',
17 | 'next' => 'Next »',
18 |
19 | ];
20 |
--------------------------------------------------------------------------------
/www/resources/lang/en/passwords.php:
--------------------------------------------------------------------------------
1 | 'Passwords must be at least six characters and match the confirmation.',
17 | 'reset' => 'Your password has been reset!',
18 | 'sent' => 'We have e-mailed your password reset link!',
19 | 'token' => 'This password reset token is invalid.',
20 | 'user' => "We can't find a user with that e-mail address.",
21 |
22 | ];
23 |
--------------------------------------------------------------------------------
/www/resources/lang/en/validation.php:
--------------------------------------------------------------------------------
1 | 'The :attribute must be accepted.',
17 | 'active_url' => 'The :attribute is not a valid URL.',
18 | 'after' => 'The :attribute must be a date after :date.',
19 | 'alpha' => 'The :attribute may only contain letters.',
20 | 'alpha_dash' => 'The :attribute may only contain letters, numbers, and dashes.',
21 | 'alpha_num' => 'The :attribute may only contain letters and numbers.',
22 | 'array' => 'The :attribute must be an array.',
23 | 'before' => 'The :attribute must be a date before :date.',
24 | 'between' => [
25 | 'numeric' => 'The :attribute must be between :min and :max.',
26 | 'file' => 'The :attribute must be between :min and :max kilobytes.',
27 | 'string' => 'The :attribute must be between :min and :max characters.',
28 | 'array' => 'The :attribute must have between :min and :max items.',
29 | ],
30 | 'boolean' => 'The :attribute field must be true or false.',
31 | 'confirmed' => 'The :attribute confirmation does not match.',
32 | 'date' => 'The :attribute is not a valid date.',
33 | 'date_format' => 'The :attribute does not match the format :format.',
34 | 'different' => 'The :attribute and :other must be different.',
35 | 'digits' => 'The :attribute must be :digits digits.',
36 | 'digits_between' => 'The :attribute must be between :min and :max digits.',
37 | 'dimensions' => 'The :attribute has invalid image dimensions.',
38 | 'distinct' => 'The :attribute field has a duplicate value.',
39 | 'email' => 'The :attribute must be a valid email address.',
40 | 'exists' => 'The selected :attribute is invalid.',
41 | 'file' => 'The :attribute must be a file.',
42 | 'filled' => 'The :attribute field is required.',
43 | 'image' => 'The :attribute must be an image.',
44 | 'in' => 'The selected :attribute is invalid.',
45 | 'in_array' => 'The :attribute field does not exist in :other.',
46 | 'integer' => 'The :attribute must be an integer.',
47 | 'ip' => 'The :attribute must be a valid IP address.',
48 | 'json' => 'The :attribute must be a valid JSON string.',
49 | 'max' => [
50 | 'numeric' => 'The :attribute may not be greater than :max.',
51 | 'file' => 'The :attribute may not be greater than :max kilobytes.',
52 | 'string' => 'The :attribute may not be greater than :max characters.',
53 | 'array' => 'The :attribute may not have more than :max items.',
54 | ],
55 | 'mimes' => 'The :attribute must be a file of type: :values.',
56 | 'mimetypes' => 'The :attribute must be a file of type: :values.',
57 | 'min' => [
58 | 'numeric' => 'The :attribute must be at least :min.',
59 | 'file' => 'The :attribute must be at least :min kilobytes.',
60 | 'string' => 'The :attribute must be at least :min characters.',
61 | 'array' => 'The :attribute must have at least :min items.',
62 | ],
63 | 'not_in' => 'The selected :attribute is invalid.',
64 | 'numeric' => 'The :attribute must be a number.',
65 | 'present' => 'The :attribute field must be present.',
66 | 'regex' => 'The :attribute format is invalid.',
67 | 'required' => 'The :attribute field is required.',
68 | 'required_if' => 'The :attribute field is required when :other is :value.',
69 | 'required_unless' => 'The :attribute field is required unless :other is in :values.',
70 | 'required_with' => 'The :attribute field is required when :values is present.',
71 | 'required_with_all' => 'The :attribute field is required when :values is present.',
72 | 'required_without' => 'The :attribute field is required when :values is not present.',
73 | 'required_without_all' => 'The :attribute field is required when none of :values are present.',
74 | 'same' => 'The :attribute and :other must match.',
75 | 'size' => [
76 | 'numeric' => 'The :attribute must be :size.',
77 | 'file' => 'The :attribute must be :size kilobytes.',
78 | 'string' => 'The :attribute must be :size characters.',
79 | 'array' => 'The :attribute must contain :size items.',
80 | ],
81 | 'string' => 'The :attribute must be a string.',
82 | 'timezone' => 'The :attribute must be a valid zone.',
83 | 'unique' => 'The :attribute has already been taken.',
84 | 'uploaded' => 'The :attribute failed to upload.',
85 | 'url' => 'The :attribute format is invalid.',
86 |
87 | /*
88 | |--------------------------------------------------------------------------
89 | | Custom Validation Language Lines
90 | |--------------------------------------------------------------------------
91 | |
92 | | Here you may specify custom validation messages for attributes using the
93 | | convention "attribute.rule" to name the lines. This makes it quick to
94 | | specify a specific custom language line for a given attribute rule.
95 | |
96 | */
97 |
98 | 'custom' => [
99 | 'attribute-name' => [
100 | 'rule-name' => 'custom-message',
101 | ],
102 | ],
103 |
104 | /*
105 | |--------------------------------------------------------------------------
106 | | Custom Validation Attributes
107 | |--------------------------------------------------------------------------
108 | |
109 | | The following language lines are used to swap attribute place-holders
110 | | with something more reader friendly such as E-Mail Address instead
111 | | of "email". This simply helps us make messages a little cleaner.
112 | |
113 | */
114 |
115 | 'attributes' => [],
116 |
117 | ];
118 |
--------------------------------------------------------------------------------
/www/resources/views/errors/503.blade.php:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | Be right back.
5 |
6 |
7 |
8 |
39 |
40 |
41 |