├── .env.example ├── .gitattributes ├── .gitignore ├── LICENSE.MD ├── app ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.php ├── Events │ └── Event.php ├── Exceptions │ └── Handler.php ├── Http │ ├── Controllers │ │ ├── AppController.php │ │ ├── AuthController.php │ │ └── Controller.php │ ├── Kernel.php │ ├── Middleware │ │ ├── Authenticate.php │ │ ├── CheckRole.php │ │ ├── EncryptCookies.php │ │ ├── RedirectIfAuthenticated.php │ │ └── VerifyCsrfToken.php │ ├── Requests │ │ └── Request.php │ └── routes.php ├── Jobs │ └── Job.php ├── Listeners │ └── .gitkeep ├── Policies │ └── .gitkeep ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── Role.php └── User.php ├── artisan ├── bootstrap ├── app.php ├── autoload.php └── cache │ └── .gitignore ├── composer.json ├── composer.lock ├── 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 │ ├── 2016_03_31_065856_create_roles_table.php │ └── 2016_03_31_070114_create_user_role_table.php └── seeds │ ├── .gitkeep │ ├── DatabaseSeeder.php │ ├── RoleTableSeeder.php │ └── UserTableSeeder.php ├── gulpfile.js ├── package.json ├── phpunit.xml ├── public ├── .htaccess ├── favicon.ico ├── index.php ├── robots.txt ├── src │ └── css │ │ └── main.css └── web.config ├── readme.md ├── resources ├── assets │ └── sass │ │ └── app.scss ├── lang │ └── en │ │ ├── auth.php │ │ ├── pagination.php │ │ ├── passwords.php │ │ └── validation.php └── views │ ├── admin.blade.php │ ├── auth │ ├── signin.blade.php │ └── signup.blade.php │ ├── author.blade.php │ ├── errors │ └── 503.blade.php │ ├── index.blade.php │ ├── layouts │ └── master.blade.php │ ├── partials │ └── header.blade.php │ └── vendor │ └── .gitkeep ├── server.php ├── storage ├── app │ ├── .gitignore │ └── public │ │ └── .gitignore ├── framework │ ├── .gitignore │ ├── cache │ │ └── .gitignore │ ├── sessions │ │ └── .gitignore │ └── views │ │ └── .gitignore └── logs │ └── .gitignore └── tests ├── ExampleTest.php └── TestCase.php /.env.example: -------------------------------------------------------------------------------- 1 | APP_ENV=local 2 | APP_DEBUG=true 3 | APP_KEY=SomeRandomString 4 | APP_URL=http://localhost 5 | 6 | DB_CONNECTION=mysql 7 | DB_HOST=127.0.0.1 8 | DB_PORT=3306 9 | DB_DATABASE=homestead 10 | DB_USERNAME=homestead 11 | DB_PASSWORD=secret 12 | 13 | CACHE_DRIVER=file 14 | SESSION_DRIVER=file 15 | QUEUE_DRIVER=sync 16 | 17 | REDIS_HOST=127.0.0.1 18 | REDIS_PASSWORD=null 19 | REDIS_PORT=6379 20 | 21 | MAIL_DRIVER=smtp 22 | MAIL_HOST=mailtrap.io 23 | MAIL_PORT=2525 24 | MAIL_USERNAME=null 25 | MAIL_PASSWORD=null 26 | MAIL_ENCRYPTION=null 27 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | *.css linguist-vendored 3 | *.less linguist-vendored 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | /public/storage 4 | Homestead.yaml 5 | Homestead.json 6 | .env 7 | /.idea 8 | -------------------------------------------------------------------------------- /LICENSE.MD: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2016 mschwarzmueller 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. -------------------------------------------------------------------------------- /app/Console/Commands/Inspire.php: -------------------------------------------------------------------------------- 1 | comment(PHP_EOL.Inspiring::quote().PHP_EOL); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Console/Kernel.php: -------------------------------------------------------------------------------- 1 | command('inspire') 28 | // ->hourly(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | $users]); 24 | } 25 | 26 | public function getGenerateArticle() 27 | { 28 | return response('Article generated!', 200); 29 | } 30 | 31 | public function postAdminAssignRoles(Request $request) 32 | { 33 | $user = User::where('email', $request['email'])->first(); 34 | $user->roles()->detach(); 35 | if ($request['role_user']) { 36 | $user->roles()->attach(Role::where('name', 'User')->first()); 37 | } 38 | if ($request['role_author']) { 39 | $user->roles()->attach(Role::where('name', 'Author')->first()); 40 | } 41 | if ($request['role_admin']) { 42 | $user->roles()->attach(Role::where('name', 'Admin')->first()); 43 | } 44 | return redirect()->back(); 45 | } 46 | } -------------------------------------------------------------------------------- /app/Http/Controllers/AuthController.php: -------------------------------------------------------------------------------- 1 | first_name = $request['first_name']; 26 | $user->last_name = $request['last_name']; 27 | $user->email = $request['email']; 28 | $user->password = $request['password']; 29 | $user->save(); 30 | $user->roles()->attach(Role::where('name', 'User')->first()); 31 | Auth::login($user); 32 | return redirect()->route('main'); 33 | } 34 | 35 | public function postSignIn(Request $request) 36 | { 37 | if (Auth::attempt(['email' => $request['email'], 'password' => $request['password']])) { 38 | return redirect()->route('main'); 39 | } 40 | return redirect()->back(); 41 | } 42 | 43 | public function getLogout() 44 | { 45 | Auth::logout(); 46 | return redirect()->route('main'); 47 | } 48 | } -------------------------------------------------------------------------------- /app/Http/Controllers/Controller.php: -------------------------------------------------------------------------------- 1 | [ 28 | \App\Http\Middleware\EncryptCookies::class, 29 | \Illuminate\Cookie\Middleware\AddQueuedCookiesToResponse::class, 30 | \Illuminate\Session\Middleware\StartSession::class, 31 | \Illuminate\View\Middleware\ShareErrorsFromSession::class, 32 | \App\Http\Middleware\VerifyCsrfToken::class, 33 | ], 34 | 35 | 'api' => [ 36 | 'throttle:60,1', 37 | ], 38 | ]; 39 | 40 | /** 41 | * The application's route middleware. 42 | * 43 | * These middleware may be assigned to groups or used individually. 44 | * 45 | * @var array 46 | */ 47 | protected $routeMiddleware = [ 48 | 'auth' => \App\Http\Middleware\Authenticate::class, 49 | 'auth.basic' => \Illuminate\Auth\Middleware\AuthenticateWithBasicAuth::class, 50 | 'guest' => \App\Http\Middleware\RedirectIfAuthenticated::class, 51 | 'throttle' => \Illuminate\Routing\Middleware\ThrottleRequests::class, 52 | 'roles' => \App\Http\Middleware\CheckRole::class 53 | ]; 54 | } 55 | -------------------------------------------------------------------------------- /app/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | guest()) { 21 | if ($request->ajax() || $request->wantsJson()) { 22 | return response('Unauthorized.', 401); 23 | } else { 24 | return redirect()->guest('login'); 25 | } 26 | } 27 | 28 | return $next($request); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /app/Http/Middleware/CheckRole.php: -------------------------------------------------------------------------------- 1 | user() === null) { 19 | return response("Insufficient permissions", 401); 20 | } 21 | $actions = $request->route()->getAction(); 22 | $roles = isset($actions['roles']) ? $actions['roles'] : null; 23 | 24 | if ($request->user()->hasAnyRole($roles) || !$roles) { 25 | return $next($request); 26 | } 27 | return response("Insufficient permissions", 401); 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 1 | check()) { 21 | return redirect('/'); 22 | } 23 | 24 | return $next($request); 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /app/Http/Middleware/VerifyCsrfToken.php: -------------------------------------------------------------------------------- 1 | 'web'], function () { 16 | Route::get('/', function () { 17 | return view('index'); 18 | })->name('main'); 19 | 20 | Route::get('/author', [ 21 | 'uses' => 'AppController@getAuthorPage', 22 | 'as' => 'author', 23 | 'middleware' => 'roles', 24 | 'roles' => ['Admin', 'Author'] 25 | ]); 26 | 27 | Route::get('/author/generate-article', [ 28 | 'uses' => 'AppController@getGenerateArticle', 29 | 'as' => 'author.article', 30 | 'middleware' => 'roles', 31 | 'roles' => ['Author'] 32 | ]); 33 | 34 | Route::get('/admin', [ 35 | 'uses' => 'AppController@getAdminPage', 36 | 'as' => 'admin', 37 | 'middleware' => 'roles', 38 | 'roles' => ['Admin'] 39 | ]); 40 | 41 | Route::post('/admin/assign-roles', [ 42 | 'uses' => 'AppController@postAdminAssignRoles', 43 | 'as' => 'admin.assign', 44 | 'middleware' => 'roles', 45 | 'roles' => ['Admin'] 46 | ]); 47 | 48 | Route::get('/signup', [ 49 | 'uses' => 'AuthController@getSignUpPage', 50 | 'as' => 'signup' 51 | ]); 52 | 53 | Route::post('/signup', [ 54 | 'uses' => 'AuthController@postSignUp', 55 | 'as' => 'signup' 56 | ]); 57 | 58 | Route::get('/signin', [ 59 | 'uses' => 'AuthController@getSignInPage', 60 | 'as' => 'signin' 61 | ]); 62 | 63 | Route::post('/signin', [ 64 | 'uses' => 'AuthController@postSignIn', 65 | 'as' => 'signin' 66 | ]); 67 | 68 | Route::get('/logout', [ 69 | 'uses' => 'AuthController@getLogout', 70 | 'as' => 'logout' 71 | ]); 72 | }); -------------------------------------------------------------------------------- /app/Jobs/Job.php: -------------------------------------------------------------------------------- 1 | 'App\Policies\ModelPolicy', 17 | ]; 18 | 19 | /** 20 | * Register any application authentication / authorization services. 21 | * 22 | * @param \Illuminate\Contracts\Auth\Access\Gate $gate 23 | * @return void 24 | */ 25 | public function boot(GateContract $gate) 26 | { 27 | $this->registerPolicies($gate); 28 | 29 | // 30 | } 31 | } 32 | -------------------------------------------------------------------------------- /app/Providers/EventServiceProvider.php: -------------------------------------------------------------------------------- 1 | [ 17 | 'App\Listeners\EventListener', 18 | ], 19 | ]; 20 | 21 | /** 22 | * Register any other events for your application. 23 | * 24 | * @param \Illuminate\Contracts\Events\Dispatcher $events 25 | * @return void 26 | */ 27 | public function boot(DispatcherContract $events) 28 | { 29 | parent::boot($events); 30 | 31 | // 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /app/Providers/RouteServiceProvider.php: -------------------------------------------------------------------------------- 1 | mapWebRoutes($router); 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 | * @param \Illuminate\Routing\Router $router 51 | * @return void 52 | */ 53 | protected function mapWebRoutes(Router $router) 54 | { 55 | $router->group([ 56 | 'namespace' => $this->namespace, 'middleware' => 'web', 57 | ], function ($router) { 58 | require app_path('Http/routes.php'); 59 | }); 60 | } 61 | } 62 | -------------------------------------------------------------------------------- /app/Role.php: -------------------------------------------------------------------------------- 1 | belongsToMany('App\User', 'user_role', 'role_id', 'user_id'); 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /app/User.php: -------------------------------------------------------------------------------- 1 | belongsToMany('App\Role', 'user_role', 'user_id', 'role_id'); 12 | } 13 | 14 | public function hasAnyRole($roles) 15 | { 16 | if (is_array($roles)) { 17 | foreach ($roles as $role) { 18 | if ($this->hasRole($role)) { 19 | return true; 20 | } 21 | } 22 | } else { 23 | if ($this->hasRole($roles)) { 24 | return true; 25 | } 26 | } 27 | return false; 28 | } 29 | 30 | public function hasRole($role) 31 | { 32 | if ($this->roles()->where('name', $role)->first()) { 33 | return true; 34 | } 35 | return false; 36 | } 37 | } 38 | -------------------------------------------------------------------------------- /artisan: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env php 2 | 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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /bootstrap/autoload.php: -------------------------------------------------------------------------------- 1 | =5.5.9", 9 | "laravel/framework": "5.2.*" 10 | }, 11 | "require-dev": { 12 | "fzaninotto/faker": "~1.4", 13 | "mockery/mockery": "0.9.*", 14 | "phpunit/phpunit": "~4.0", 15 | "symfony/css-selector": "2.8.*|3.0.*", 16 | "symfony/dom-crawler": "2.8.*|3.0.*" 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 \"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 | -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- 1 | { 2 | "_readme": [ 3 | "This file locks the dependencies of your project to a known state", 4 | "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file", 5 | "This file is @generated automatically" 6 | ], 7 | "hash": "c284a9c122da36c99a8b6597bdce7aa6", 8 | "content-hash": "8b1485987e7c5949da82435d403e52e8", 9 | "packages": [ 10 | { 11 | "name": "classpreloader/classpreloader", 12 | "version": "3.0.0", 13 | "source": { 14 | "type": "git", 15 | "url": "https://github.com/ClassPreloader/ClassPreloader.git", 16 | "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a" 17 | }, 18 | "dist": { 19 | "type": "zip", 20 | "url": "https://api.github.com/repos/ClassPreloader/ClassPreloader/zipball/9b10b913c2bdf90c3d2e0d726b454fb7f77c552a", 21 | "reference": "9b10b913c2bdf90c3d2e0d726b454fb7f77c552a", 22 | "shasum": "" 23 | }, 24 | "require": { 25 | "nikic/php-parser": "^1.0|^2.0", 26 | "php": ">=5.5.9" 27 | }, 28 | "require-dev": { 29 | "phpunit/phpunit": "^4.8|^5.0" 30 | }, 31 | "type": "library", 32 | "extra": { 33 | "branch-alias": { 34 | "dev-master": "3.0-dev" 35 | } 36 | }, 37 | "autoload": { 38 | "psr-4": { 39 | "ClassPreloader\\": "src/" 40 | } 41 | }, 42 | "notification-url": "https://packagist.org/downloads/", 43 | "license": [ 44 | "MIT" 45 | ], 46 | "authors": [ 47 | { 48 | "name": "Michael Dowling", 49 | "email": "mtdowling@gmail.com" 50 | }, 51 | { 52 | "name": "Graham Campbell", 53 | "email": "graham@alt-three.com" 54 | } 55 | ], 56 | "description": "Helps class loading performance by generating a single PHP file containing all of the autoloaded files for a specific use case", 57 | "keywords": [ 58 | "autoload", 59 | "class", 60 | "preload" 61 | ], 62 | "time": "2015-11-09 22:51:51" 63 | }, 64 | { 65 | "name": "dnoegel/php-xdg-base-dir", 66 | "version": "0.1", 67 | "source": { 68 | "type": "git", 69 | "url": "https://github.com/dnoegel/php-xdg-base-dir.git", 70 | "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a" 71 | }, 72 | "dist": { 73 | "type": "zip", 74 | "url": "https://api.github.com/repos/dnoegel/php-xdg-base-dir/zipball/265b8593498b997dc2d31e75b89f053b5cc9621a", 75 | "reference": "265b8593498b997dc2d31e75b89f053b5cc9621a", 76 | "shasum": "" 77 | }, 78 | "require": { 79 | "php": ">=5.3.2" 80 | }, 81 | "require-dev": { 82 | "phpunit/phpunit": "@stable" 83 | }, 84 | "type": "project", 85 | "autoload": { 86 | "psr-4": { 87 | "XdgBaseDir\\": "src/" 88 | } 89 | }, 90 | "notification-url": "https://packagist.org/downloads/", 91 | "license": [ 92 | "MIT" 93 | ], 94 | "description": "implementation of xdg base directory specification for php", 95 | "time": "2014-10-24 07:27:01" 96 | }, 97 | { 98 | "name": "doctrine/inflector", 99 | "version": "v1.1.0", 100 | "source": { 101 | "type": "git", 102 | "url": "https://github.com/doctrine/inflector.git", 103 | "reference": "90b2128806bfde671b6952ab8bea493942c1fdae" 104 | }, 105 | "dist": { 106 | "type": "zip", 107 | "url": "https://api.github.com/repos/doctrine/inflector/zipball/90b2128806bfde671b6952ab8bea493942c1fdae", 108 | "reference": "90b2128806bfde671b6952ab8bea493942c1fdae", 109 | "shasum": "" 110 | }, 111 | "require": { 112 | "php": ">=5.3.2" 113 | }, 114 | "require-dev": { 115 | "phpunit/phpunit": "4.*" 116 | }, 117 | "type": "library", 118 | "extra": { 119 | "branch-alias": { 120 | "dev-master": "1.1.x-dev" 121 | } 122 | }, 123 | "autoload": { 124 | "psr-0": { 125 | "Doctrine\\Common\\Inflector\\": "lib/" 126 | } 127 | }, 128 | "notification-url": "https://packagist.org/downloads/", 129 | "license": [ 130 | "MIT" 131 | ], 132 | "authors": [ 133 | { 134 | "name": "Roman Borschel", 135 | "email": "roman@code-factory.org" 136 | }, 137 | { 138 | "name": "Benjamin Eberlei", 139 | "email": "kontakt@beberlei.de" 140 | }, 141 | { 142 | "name": "Guilherme Blanco", 143 | "email": "guilhermeblanco@gmail.com" 144 | }, 145 | { 146 | "name": "Jonathan Wage", 147 | "email": "jonwage@gmail.com" 148 | }, 149 | { 150 | "name": "Johannes Schmitt", 151 | "email": "schmittjoh@gmail.com" 152 | } 153 | ], 154 | "description": "Common String Manipulations with regard to casing and singular/plural rules.", 155 | "homepage": "http://www.doctrine-project.org", 156 | "keywords": [ 157 | "inflection", 158 | "pluralize", 159 | "singularize", 160 | "string" 161 | ], 162 | "time": "2015-11-06 14:35:42" 163 | }, 164 | { 165 | "name": "jakub-onderka/php-console-color", 166 | "version": "0.1", 167 | "source": { 168 | "type": "git", 169 | "url": "https://github.com/JakubOnderka/PHP-Console-Color.git", 170 | "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1" 171 | }, 172 | "dist": { 173 | "type": "zip", 174 | "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Color/zipball/e0b393dacf7703fc36a4efc3df1435485197e6c1", 175 | "reference": "e0b393dacf7703fc36a4efc3df1435485197e6c1", 176 | "shasum": "" 177 | }, 178 | "require": { 179 | "php": ">=5.3.2" 180 | }, 181 | "require-dev": { 182 | "jakub-onderka/php-code-style": "1.0", 183 | "jakub-onderka/php-parallel-lint": "0.*", 184 | "jakub-onderka/php-var-dump-check": "0.*", 185 | "phpunit/phpunit": "3.7.*", 186 | "squizlabs/php_codesniffer": "1.*" 187 | }, 188 | "type": "library", 189 | "autoload": { 190 | "psr-0": { 191 | "JakubOnderka\\PhpConsoleColor": "src/" 192 | } 193 | }, 194 | "notification-url": "https://packagist.org/downloads/", 195 | "license": [ 196 | "BSD-2-Clause" 197 | ], 198 | "authors": [ 199 | { 200 | "name": "Jakub Onderka", 201 | "email": "jakub.onderka@gmail.com", 202 | "homepage": "http://www.acci.cz" 203 | } 204 | ], 205 | "time": "2014-04-08 15:00:19" 206 | }, 207 | { 208 | "name": "jakub-onderka/php-console-highlighter", 209 | "version": "v0.3.2", 210 | "source": { 211 | "type": "git", 212 | "url": "https://github.com/JakubOnderka/PHP-Console-Highlighter.git", 213 | "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5" 214 | }, 215 | "dist": { 216 | "type": "zip", 217 | "url": "https://api.github.com/repos/JakubOnderka/PHP-Console-Highlighter/zipball/7daa75df45242c8d5b75a22c00a201e7954e4fb5", 218 | "reference": "7daa75df45242c8d5b75a22c00a201e7954e4fb5", 219 | "shasum": "" 220 | }, 221 | "require": { 222 | "jakub-onderka/php-console-color": "~0.1", 223 | "php": ">=5.3.0" 224 | }, 225 | "require-dev": { 226 | "jakub-onderka/php-code-style": "~1.0", 227 | "jakub-onderka/php-parallel-lint": "~0.5", 228 | "jakub-onderka/php-var-dump-check": "~0.1", 229 | "phpunit/phpunit": "~4.0", 230 | "squizlabs/php_codesniffer": "~1.5" 231 | }, 232 | "type": "library", 233 | "autoload": { 234 | "psr-0": { 235 | "JakubOnderka\\PhpConsoleHighlighter": "src/" 236 | } 237 | }, 238 | "notification-url": "https://packagist.org/downloads/", 239 | "license": [ 240 | "MIT" 241 | ], 242 | "authors": [ 243 | { 244 | "name": "Jakub Onderka", 245 | "email": "acci@acci.cz", 246 | "homepage": "http://www.acci.cz/" 247 | } 248 | ], 249 | "time": "2015-04-20 18:58:01" 250 | }, 251 | { 252 | "name": "jeremeamia/SuperClosure", 253 | "version": "2.2.0", 254 | "source": { 255 | "type": "git", 256 | "url": "https://github.com/jeremeamia/super_closure.git", 257 | "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938" 258 | }, 259 | "dist": { 260 | "type": "zip", 261 | "url": "https://api.github.com/repos/jeremeamia/super_closure/zipball/29a88be2a4846d27c1613aed0c9071dfad7b5938", 262 | "reference": "29a88be2a4846d27c1613aed0c9071dfad7b5938", 263 | "shasum": "" 264 | }, 265 | "require": { 266 | "nikic/php-parser": "^1.2|^2.0", 267 | "php": ">=5.4", 268 | "symfony/polyfill-php56": "^1.0" 269 | }, 270 | "require-dev": { 271 | "phpunit/phpunit": "^4.0|^5.0" 272 | }, 273 | "type": "library", 274 | "extra": { 275 | "branch-alias": { 276 | "dev-master": "2.2-dev" 277 | } 278 | }, 279 | "autoload": { 280 | "psr-4": { 281 | "SuperClosure\\": "src/" 282 | } 283 | }, 284 | "notification-url": "https://packagist.org/downloads/", 285 | "license": [ 286 | "MIT" 287 | ], 288 | "authors": [ 289 | { 290 | "name": "Jeremy Lindblom", 291 | "email": "jeremeamia@gmail.com", 292 | "homepage": "https://github.com/jeremeamia", 293 | "role": "Developer" 294 | } 295 | ], 296 | "description": "Serialize Closure objects, including their context and binding", 297 | "homepage": "https://github.com/jeremeamia/super_closure", 298 | "keywords": [ 299 | "closure", 300 | "function", 301 | "lambda", 302 | "parser", 303 | "serializable", 304 | "serialize", 305 | "tokenizer" 306 | ], 307 | "time": "2015-12-05 17:17:57" 308 | }, 309 | { 310 | "name": "laravel/framework", 311 | "version": "v5.2.27", 312 | "source": { 313 | "type": "git", 314 | "url": "https://github.com/laravel/framework.git", 315 | "reference": "ccda783ffa253ed27dd1d4b41dbbc95e76e48a2a" 316 | }, 317 | "dist": { 318 | "type": "zip", 319 | "url": "https://api.github.com/repos/laravel/framework/zipball/ccda783ffa253ed27dd1d4b41dbbc95e76e48a2a", 320 | "reference": "ccda783ffa253ed27dd1d4b41dbbc95e76e48a2a", 321 | "shasum": "" 322 | }, 323 | "require": { 324 | "classpreloader/classpreloader": "~3.0", 325 | "doctrine/inflector": "~1.0", 326 | "ext-mbstring": "*", 327 | "ext-openssl": "*", 328 | "jeremeamia/superclosure": "~2.2", 329 | "league/flysystem": "~1.0", 330 | "monolog/monolog": "~1.11", 331 | "mtdowling/cron-expression": "~1.0", 332 | "nesbot/carbon": "~1.20", 333 | "paragonie/random_compat": "~1.4", 334 | "php": ">=5.5.9", 335 | "psy/psysh": "0.7.*", 336 | "swiftmailer/swiftmailer": "~5.1", 337 | "symfony/console": "2.8.*|3.0.*", 338 | "symfony/debug": "2.8.*|3.0.*", 339 | "symfony/finder": "2.8.*|3.0.*", 340 | "symfony/http-foundation": "2.8.*|3.0.*", 341 | "symfony/http-kernel": "2.8.*|3.0.*", 342 | "symfony/polyfill-php56": "~1.0", 343 | "symfony/process": "2.8.*|3.0.*", 344 | "symfony/routing": "2.8.*|3.0.*", 345 | "symfony/translation": "2.8.*|3.0.*", 346 | "symfony/var-dumper": "2.8.*|3.0.*", 347 | "vlucas/phpdotenv": "~2.2" 348 | }, 349 | "replace": { 350 | "illuminate/auth": "self.version", 351 | "illuminate/broadcasting": "self.version", 352 | "illuminate/bus": "self.version", 353 | "illuminate/cache": "self.version", 354 | "illuminate/config": "self.version", 355 | "illuminate/console": "self.version", 356 | "illuminate/container": "self.version", 357 | "illuminate/contracts": "self.version", 358 | "illuminate/cookie": "self.version", 359 | "illuminate/database": "self.version", 360 | "illuminate/encryption": "self.version", 361 | "illuminate/events": "self.version", 362 | "illuminate/exception": "self.version", 363 | "illuminate/filesystem": "self.version", 364 | "illuminate/hashing": "self.version", 365 | "illuminate/http": "self.version", 366 | "illuminate/log": "self.version", 367 | "illuminate/mail": "self.version", 368 | "illuminate/pagination": "self.version", 369 | "illuminate/pipeline": "self.version", 370 | "illuminate/queue": "self.version", 371 | "illuminate/redis": "self.version", 372 | "illuminate/routing": "self.version", 373 | "illuminate/session": "self.version", 374 | "illuminate/support": "self.version", 375 | "illuminate/translation": "self.version", 376 | "illuminate/validation": "self.version", 377 | "illuminate/view": "self.version" 378 | }, 379 | "require-dev": { 380 | "aws/aws-sdk-php": "~3.0", 381 | "mockery/mockery": "~0.9.2", 382 | "pda/pheanstalk": "~3.0", 383 | "phpunit/phpunit": "~4.1", 384 | "predis/predis": "~1.0", 385 | "symfony/css-selector": "2.8.*|3.0.*", 386 | "symfony/dom-crawler": "2.8.*|3.0.*" 387 | }, 388 | "suggest": { 389 | "aws/aws-sdk-php": "Required to use the SQS queue driver and SES mail driver (~3.0).", 390 | "doctrine/dbal": "Required to rename columns and drop SQLite columns (~2.4).", 391 | "fzaninotto/faker": "Required to use the eloquent factory builder (~1.4).", 392 | "guzzlehttp/guzzle": "Required to use the Mailgun and Mandrill mail drivers and the ping methods on schedules (~5.3|~6.0).", 393 | "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (~1.0).", 394 | "league/flysystem-rackspace": "Required to use the Flysystem Rackspace driver (~1.0).", 395 | "pda/pheanstalk": "Required to use the beanstalk queue driver (~3.0).", 396 | "predis/predis": "Required to use the redis cache and queue drivers (~1.0).", 397 | "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (~2.0).", 398 | "symfony/css-selector": "Required to use some of the crawler integration testing tools (2.8.*|3.0.*).", 399 | "symfony/dom-crawler": "Required to use most of the crawler integration testing tools (2.8.*|3.0.*)." 400 | }, 401 | "type": "library", 402 | "extra": { 403 | "branch-alias": { 404 | "dev-master": "5.2-dev" 405 | } 406 | }, 407 | "autoload": { 408 | "classmap": [ 409 | "src/Illuminate/Queue/IlluminateQueueClosure.php" 410 | ], 411 | "files": [ 412 | "src/Illuminate/Foundation/helpers.php", 413 | "src/Illuminate/Support/helpers.php" 414 | ], 415 | "psr-4": { 416 | "Illuminate\\": "src/Illuminate/" 417 | } 418 | }, 419 | "notification-url": "https://packagist.org/downloads/", 420 | "license": [ 421 | "MIT" 422 | ], 423 | "authors": [ 424 | { 425 | "name": "Taylor Otwell", 426 | "email": "taylorotwell@gmail.com" 427 | } 428 | ], 429 | "description": "The Laravel Framework.", 430 | "homepage": "http://laravel.com", 431 | "keywords": [ 432 | "framework", 433 | "laravel" 434 | ], 435 | "time": "2016-03-29 13:32:58" 436 | }, 437 | { 438 | "name": "league/flysystem", 439 | "version": "1.0.20", 440 | "source": { 441 | "type": "git", 442 | "url": "https://github.com/thephpleague/flysystem.git", 443 | "reference": "e87a786e3ae12a25cf78a71bb07b4b384bfaa83a" 444 | }, 445 | "dist": { 446 | "type": "zip", 447 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e87a786e3ae12a25cf78a71bb07b4b384bfaa83a", 448 | "reference": "e87a786e3ae12a25cf78a71bb07b4b384bfaa83a", 449 | "shasum": "" 450 | }, 451 | "require": { 452 | "php": ">=5.4.0" 453 | }, 454 | "conflict": { 455 | "league/flysystem-sftp": "<1.0.6" 456 | }, 457 | "require-dev": { 458 | "ext-fileinfo": "*", 459 | "mockery/mockery": "~0.9", 460 | "phpspec/phpspec": "^2.2", 461 | "phpunit/phpunit": "~4.8 || ~5.0" 462 | }, 463 | "suggest": { 464 | "ext-fileinfo": "Required for MimeType", 465 | "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", 466 | "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", 467 | "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", 468 | "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", 469 | "league/flysystem-copy": "Allows you to use Copy.com storage", 470 | "league/flysystem-dropbox": "Allows you to use Dropbox storage", 471 | "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", 472 | "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", 473 | "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", 474 | "league/flysystem-webdav": "Allows you to use WebDAV storage", 475 | "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter" 476 | }, 477 | "type": "library", 478 | "extra": { 479 | "branch-alias": { 480 | "dev-master": "1.1-dev" 481 | } 482 | }, 483 | "autoload": { 484 | "psr-4": { 485 | "League\\Flysystem\\": "src/" 486 | } 487 | }, 488 | "notification-url": "https://packagist.org/downloads/", 489 | "license": [ 490 | "MIT" 491 | ], 492 | "authors": [ 493 | { 494 | "name": "Frank de Jonge", 495 | "email": "info@frenky.net" 496 | } 497 | ], 498 | "description": "Filesystem abstraction: Many filesystems, one API.", 499 | "keywords": [ 500 | "Cloud Files", 501 | "WebDAV", 502 | "abstraction", 503 | "aws", 504 | "cloud", 505 | "copy.com", 506 | "dropbox", 507 | "file systems", 508 | "files", 509 | "filesystem", 510 | "filesystems", 511 | "ftp", 512 | "rackspace", 513 | "remote", 514 | "s3", 515 | "sftp", 516 | "storage" 517 | ], 518 | "time": "2016-03-14 21:54:11" 519 | }, 520 | { 521 | "name": "monolog/monolog", 522 | "version": "1.18.1", 523 | "source": { 524 | "type": "git", 525 | "url": "https://github.com/Seldaek/monolog.git", 526 | "reference": "a5f2734e8c16f3aa21b3da09715d10e15b4d2d45" 527 | }, 528 | "dist": { 529 | "type": "zip", 530 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/a5f2734e8c16f3aa21b3da09715d10e15b4d2d45", 531 | "reference": "a5f2734e8c16f3aa21b3da09715d10e15b4d2d45", 532 | "shasum": "" 533 | }, 534 | "require": { 535 | "php": ">=5.3.0", 536 | "psr/log": "~1.0" 537 | }, 538 | "provide": { 539 | "psr/log-implementation": "1.0.0" 540 | }, 541 | "require-dev": { 542 | "aws/aws-sdk-php": "^2.4.9", 543 | "doctrine/couchdb": "~1.0@dev", 544 | "graylog2/gelf-php": "~1.0", 545 | "jakub-onderka/php-parallel-lint": "0.9", 546 | "php-console/php-console": "^3.1.3", 547 | "phpunit/phpunit": "~4.5", 548 | "phpunit/phpunit-mock-objects": "2.3.0", 549 | "raven/raven": "^0.13", 550 | "ruflin/elastica": ">=0.90 <3.0", 551 | "swiftmailer/swiftmailer": "~5.3", 552 | "videlalvaro/php-amqplib": "~2.4" 553 | }, 554 | "suggest": { 555 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 556 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 557 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 558 | "ext-mongo": "Allow sending log messages to a MongoDB server", 559 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 560 | "mongodb/mongodb": "Allow sending log messages to a MongoDB server via PHP Driver", 561 | "php-console/php-console": "Allow sending log messages to Google Chrome", 562 | "raven/raven": "Allow sending log messages to a Sentry server", 563 | "rollbar/rollbar": "Allow sending log messages to Rollbar", 564 | "ruflin/elastica": "Allow sending log messages to an Elastic Search server", 565 | "videlalvaro/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib" 566 | }, 567 | "type": "library", 568 | "extra": { 569 | "branch-alias": { 570 | "dev-master": "2.0.x-dev" 571 | } 572 | }, 573 | "autoload": { 574 | "psr-4": { 575 | "Monolog\\": "src/Monolog" 576 | } 577 | }, 578 | "notification-url": "https://packagist.org/downloads/", 579 | "license": [ 580 | "MIT" 581 | ], 582 | "authors": [ 583 | { 584 | "name": "Jordi Boggiano", 585 | "email": "j.boggiano@seld.be", 586 | "homepage": "http://seld.be" 587 | } 588 | ], 589 | "description": "Sends your logs to files, sockets, inboxes, databases and various web services", 590 | "homepage": "http://github.com/Seldaek/monolog", 591 | "keywords": [ 592 | "log", 593 | "logging", 594 | "psr-3" 595 | ], 596 | "time": "2016-03-13 16:08:35" 597 | }, 598 | { 599 | "name": "mtdowling/cron-expression", 600 | "version": "v1.1.0", 601 | "source": { 602 | "type": "git", 603 | "url": "https://github.com/mtdowling/cron-expression.git", 604 | "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5" 605 | }, 606 | "dist": { 607 | "type": "zip", 608 | "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/c9ee7886f5a12902b225a1a12f36bb45f9ab89e5", 609 | "reference": "c9ee7886f5a12902b225a1a12f36bb45f9ab89e5", 610 | "shasum": "" 611 | }, 612 | "require": { 613 | "php": ">=5.3.2" 614 | }, 615 | "require-dev": { 616 | "phpunit/phpunit": "~4.0|~5.0" 617 | }, 618 | "type": "library", 619 | "autoload": { 620 | "psr-0": { 621 | "Cron": "src/" 622 | } 623 | }, 624 | "notification-url": "https://packagist.org/downloads/", 625 | "license": [ 626 | "MIT" 627 | ], 628 | "authors": [ 629 | { 630 | "name": "Michael Dowling", 631 | "email": "mtdowling@gmail.com", 632 | "homepage": "https://github.com/mtdowling" 633 | } 634 | ], 635 | "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due", 636 | "keywords": [ 637 | "cron", 638 | "schedule" 639 | ], 640 | "time": "2016-01-26 21:23:30" 641 | }, 642 | { 643 | "name": "nesbot/carbon", 644 | "version": "1.21.0", 645 | "source": { 646 | "type": "git", 647 | "url": "https://github.com/briannesbitt/Carbon.git", 648 | "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7" 649 | }, 650 | "dist": { 651 | "type": "zip", 652 | "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/7b08ec6f75791e130012f206e3f7b0e76e18e3d7", 653 | "reference": "7b08ec6f75791e130012f206e3f7b0e76e18e3d7", 654 | "shasum": "" 655 | }, 656 | "require": { 657 | "php": ">=5.3.0", 658 | "symfony/translation": "~2.6|~3.0" 659 | }, 660 | "require-dev": { 661 | "phpunit/phpunit": "~4.0|~5.0" 662 | }, 663 | "type": "library", 664 | "autoload": { 665 | "psr-4": { 666 | "Carbon\\": "src/Carbon/" 667 | } 668 | }, 669 | "notification-url": "https://packagist.org/downloads/", 670 | "license": [ 671 | "MIT" 672 | ], 673 | "authors": [ 674 | { 675 | "name": "Brian Nesbitt", 676 | "email": "brian@nesbot.com", 677 | "homepage": "http://nesbot.com" 678 | } 679 | ], 680 | "description": "A simple API extension for DateTime.", 681 | "homepage": "http://carbon.nesbot.com", 682 | "keywords": [ 683 | "date", 684 | "datetime", 685 | "time" 686 | ], 687 | "time": "2015-11-04 20:07:17" 688 | }, 689 | { 690 | "name": "nikic/php-parser", 691 | "version": "v2.0.1", 692 | "source": { 693 | "type": "git", 694 | "url": "https://github.com/nikic/PHP-Parser.git", 695 | "reference": "ce5be709d59b32dd8a88c80259028759991a4206" 696 | }, 697 | "dist": { 698 | "type": "zip", 699 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ce5be709d59b32dd8a88c80259028759991a4206", 700 | "reference": "ce5be709d59b32dd8a88c80259028759991a4206", 701 | "shasum": "" 702 | }, 703 | "require": { 704 | "ext-tokenizer": "*", 705 | "php": ">=5.4" 706 | }, 707 | "require-dev": { 708 | "phpunit/phpunit": "~4.0" 709 | }, 710 | "bin": [ 711 | "bin/php-parse" 712 | ], 713 | "type": "library", 714 | "extra": { 715 | "branch-alias": { 716 | "dev-master": "2.0-dev" 717 | } 718 | }, 719 | "autoload": { 720 | "psr-4": { 721 | "PhpParser\\": "lib/PhpParser" 722 | } 723 | }, 724 | "notification-url": "https://packagist.org/downloads/", 725 | "license": [ 726 | "BSD-3-Clause" 727 | ], 728 | "authors": [ 729 | { 730 | "name": "Nikita Popov" 731 | } 732 | ], 733 | "description": "A PHP parser written in PHP", 734 | "keywords": [ 735 | "parser", 736 | "php" 737 | ], 738 | "time": "2016-02-28 19:48:28" 739 | }, 740 | { 741 | "name": "paragonie/random_compat", 742 | "version": "v1.4.1", 743 | "source": { 744 | "type": "git", 745 | "url": "https://github.com/paragonie/random_compat.git", 746 | "reference": "c7e26a21ba357863de030f0b9e701c7d04593774" 747 | }, 748 | "dist": { 749 | "type": "zip", 750 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/c7e26a21ba357863de030f0b9e701c7d04593774", 751 | "reference": "c7e26a21ba357863de030f0b9e701c7d04593774", 752 | "shasum": "" 753 | }, 754 | "require": { 755 | "php": ">=5.2.0" 756 | }, 757 | "require-dev": { 758 | "phpunit/phpunit": "4.*|5.*" 759 | }, 760 | "suggest": { 761 | "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes." 762 | }, 763 | "type": "library", 764 | "autoload": { 765 | "files": [ 766 | "lib/random.php" 767 | ] 768 | }, 769 | "notification-url": "https://packagist.org/downloads/", 770 | "license": [ 771 | "MIT" 772 | ], 773 | "authors": [ 774 | { 775 | "name": "Paragon Initiative Enterprises", 776 | "email": "security@paragonie.com", 777 | "homepage": "https://paragonie.com" 778 | } 779 | ], 780 | "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7", 781 | "keywords": [ 782 | "csprng", 783 | "pseudorandom", 784 | "random" 785 | ], 786 | "time": "2016-03-18 20:34:03" 787 | }, 788 | { 789 | "name": "psr/log", 790 | "version": "1.0.0", 791 | "source": { 792 | "type": "git", 793 | "url": "https://github.com/php-fig/log.git", 794 | "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b" 795 | }, 796 | "dist": { 797 | "type": "zip", 798 | "url": "https://api.github.com/repos/php-fig/log/zipball/fe0936ee26643249e916849d48e3a51d5f5e278b", 799 | "reference": "fe0936ee26643249e916849d48e3a51d5f5e278b", 800 | "shasum": "" 801 | }, 802 | "type": "library", 803 | "autoload": { 804 | "psr-0": { 805 | "Psr\\Log\\": "" 806 | } 807 | }, 808 | "notification-url": "https://packagist.org/downloads/", 809 | "license": [ 810 | "MIT" 811 | ], 812 | "authors": [ 813 | { 814 | "name": "PHP-FIG", 815 | "homepage": "http://www.php-fig.org/" 816 | } 817 | ], 818 | "description": "Common interface for logging libraries", 819 | "keywords": [ 820 | "log", 821 | "psr", 822 | "psr-3" 823 | ], 824 | "time": "2012-12-21 11:40:51" 825 | }, 826 | { 827 | "name": "psy/psysh", 828 | "version": "v0.7.2", 829 | "source": { 830 | "type": "git", 831 | "url": "https://github.com/bobthecow/psysh.git", 832 | "reference": "e64e10b20f8d229cac76399e1f3edddb57a0f280" 833 | }, 834 | "dist": { 835 | "type": "zip", 836 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/e64e10b20f8d229cac76399e1f3edddb57a0f280", 837 | "reference": "e64e10b20f8d229cac76399e1f3edddb57a0f280", 838 | "shasum": "" 839 | }, 840 | "require": { 841 | "dnoegel/php-xdg-base-dir": "0.1", 842 | "jakub-onderka/php-console-highlighter": "0.3.*", 843 | "nikic/php-parser": "^1.2.1|~2.0", 844 | "php": ">=5.3.9", 845 | "symfony/console": "~2.3.10|^2.4.2|~3.0", 846 | "symfony/var-dumper": "~2.7|~3.0" 847 | }, 848 | "require-dev": { 849 | "fabpot/php-cs-fixer": "~1.5", 850 | "phpunit/phpunit": "~3.7|~4.0|~5.0", 851 | "squizlabs/php_codesniffer": "~2.0", 852 | "symfony/finder": "~2.1|~3.0" 853 | }, 854 | "suggest": { 855 | "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)", 856 | "ext-pdo-sqlite": "The doc command requires SQLite to work.", 857 | "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well.", 858 | "ext-readline": "Enables support for arrow-key history navigation, and showing and manipulating command history." 859 | }, 860 | "bin": [ 861 | "bin/psysh" 862 | ], 863 | "type": "library", 864 | "extra": { 865 | "branch-alias": { 866 | "dev-develop": "0.8.x-dev" 867 | } 868 | }, 869 | "autoload": { 870 | "files": [ 871 | "src/Psy/functions.php" 872 | ], 873 | "psr-4": { 874 | "Psy\\": "src/Psy/" 875 | } 876 | }, 877 | "notification-url": "https://packagist.org/downloads/", 878 | "license": [ 879 | "MIT" 880 | ], 881 | "authors": [ 882 | { 883 | "name": "Justin Hileman", 884 | "email": "justin@justinhileman.info", 885 | "homepage": "http://justinhileman.com" 886 | } 887 | ], 888 | "description": "An interactive shell for modern PHP.", 889 | "homepage": "http://psysh.org", 890 | "keywords": [ 891 | "REPL", 892 | "console", 893 | "interactive", 894 | "shell" 895 | ], 896 | "time": "2016-03-09 05:03:14" 897 | }, 898 | { 899 | "name": "swiftmailer/swiftmailer", 900 | "version": "v5.4.1", 901 | "source": { 902 | "type": "git", 903 | "url": "https://github.com/swiftmailer/swiftmailer.git", 904 | "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421" 905 | }, 906 | "dist": { 907 | "type": "zip", 908 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421", 909 | "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421", 910 | "shasum": "" 911 | }, 912 | "require": { 913 | "php": ">=5.3.3" 914 | }, 915 | "require-dev": { 916 | "mockery/mockery": "~0.9.1,<0.9.4" 917 | }, 918 | "type": "library", 919 | "extra": { 920 | "branch-alias": { 921 | "dev-master": "5.4-dev" 922 | } 923 | }, 924 | "autoload": { 925 | "files": [ 926 | "lib/swift_required.php" 927 | ] 928 | }, 929 | "notification-url": "https://packagist.org/downloads/", 930 | "license": [ 931 | "MIT" 932 | ], 933 | "authors": [ 934 | { 935 | "name": "Chris Corbyn" 936 | }, 937 | { 938 | "name": "Fabien Potencier", 939 | "email": "fabien@symfony.com" 940 | } 941 | ], 942 | "description": "Swiftmailer, free feature-rich PHP mailer", 943 | "homepage": "http://swiftmailer.org", 944 | "keywords": [ 945 | "email", 946 | "mail", 947 | "mailer" 948 | ], 949 | "time": "2015-06-06 14:19:39" 950 | }, 951 | { 952 | "name": "symfony/console", 953 | "version": "v3.0.3", 954 | "source": { 955 | "type": "git", 956 | "url": "https://github.com/symfony/console.git", 957 | "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04" 958 | }, 959 | "dist": { 960 | "type": "zip", 961 | "url": "https://api.github.com/repos/symfony/console/zipball/2ed5e2706ce92313d120b8fe50d1063bcfd12e04", 962 | "reference": "2ed5e2706ce92313d120b8fe50d1063bcfd12e04", 963 | "shasum": "" 964 | }, 965 | "require": { 966 | "php": ">=5.5.9", 967 | "symfony/polyfill-mbstring": "~1.0" 968 | }, 969 | "require-dev": { 970 | "psr/log": "~1.0", 971 | "symfony/event-dispatcher": "~2.8|~3.0", 972 | "symfony/process": "~2.8|~3.0" 973 | }, 974 | "suggest": { 975 | "psr/log": "For using the console logger", 976 | "symfony/event-dispatcher": "", 977 | "symfony/process": "" 978 | }, 979 | "type": "library", 980 | "extra": { 981 | "branch-alias": { 982 | "dev-master": "3.0-dev" 983 | } 984 | }, 985 | "autoload": { 986 | "psr-4": { 987 | "Symfony\\Component\\Console\\": "" 988 | }, 989 | "exclude-from-classmap": [ 990 | "/Tests/" 991 | ] 992 | }, 993 | "notification-url": "https://packagist.org/downloads/", 994 | "license": [ 995 | "MIT" 996 | ], 997 | "authors": [ 998 | { 999 | "name": "Fabien Potencier", 1000 | "email": "fabien@symfony.com" 1001 | }, 1002 | { 1003 | "name": "Symfony Community", 1004 | "homepage": "https://symfony.com/contributors" 1005 | } 1006 | ], 1007 | "description": "Symfony Console Component", 1008 | "homepage": "https://symfony.com", 1009 | "time": "2016-02-28 16:24:34" 1010 | }, 1011 | { 1012 | "name": "symfony/debug", 1013 | "version": "v3.0.3", 1014 | "source": { 1015 | "type": "git", 1016 | "url": "https://github.com/symfony/debug.git", 1017 | "reference": "29606049ced1ec715475f88d1bbe587252a3476e" 1018 | }, 1019 | "dist": { 1020 | "type": "zip", 1021 | "url": "https://api.github.com/repos/symfony/debug/zipball/29606049ced1ec715475f88d1bbe587252a3476e", 1022 | "reference": "29606049ced1ec715475f88d1bbe587252a3476e", 1023 | "shasum": "" 1024 | }, 1025 | "require": { 1026 | "php": ">=5.5.9", 1027 | "psr/log": "~1.0" 1028 | }, 1029 | "conflict": { 1030 | "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" 1031 | }, 1032 | "require-dev": { 1033 | "symfony/class-loader": "~2.8|~3.0", 1034 | "symfony/http-kernel": "~2.8|~3.0" 1035 | }, 1036 | "type": "library", 1037 | "extra": { 1038 | "branch-alias": { 1039 | "dev-master": "3.0-dev" 1040 | } 1041 | }, 1042 | "autoload": { 1043 | "psr-4": { 1044 | "Symfony\\Component\\Debug\\": "" 1045 | }, 1046 | "exclude-from-classmap": [ 1047 | "/Tests/" 1048 | ] 1049 | }, 1050 | "notification-url": "https://packagist.org/downloads/", 1051 | "license": [ 1052 | "MIT" 1053 | ], 1054 | "authors": [ 1055 | { 1056 | "name": "Fabien Potencier", 1057 | "email": "fabien@symfony.com" 1058 | }, 1059 | { 1060 | "name": "Symfony Community", 1061 | "homepage": "https://symfony.com/contributors" 1062 | } 1063 | ], 1064 | "description": "Symfony Debug Component", 1065 | "homepage": "https://symfony.com", 1066 | "time": "2016-01-27 05:14:46" 1067 | }, 1068 | { 1069 | "name": "symfony/event-dispatcher", 1070 | "version": "v3.0.3", 1071 | "source": { 1072 | "type": "git", 1073 | "url": "https://github.com/symfony/event-dispatcher.git", 1074 | "reference": "4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa" 1075 | }, 1076 | "dist": { 1077 | "type": "zip", 1078 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa", 1079 | "reference": "4dd5df31a28c0f82b41cb1e1599b74b5dcdbdafa", 1080 | "shasum": "" 1081 | }, 1082 | "require": { 1083 | "php": ">=5.5.9" 1084 | }, 1085 | "require-dev": { 1086 | "psr/log": "~1.0", 1087 | "symfony/config": "~2.8|~3.0", 1088 | "symfony/dependency-injection": "~2.8|~3.0", 1089 | "symfony/expression-language": "~2.8|~3.0", 1090 | "symfony/stopwatch": "~2.8|~3.0" 1091 | }, 1092 | "suggest": { 1093 | "symfony/dependency-injection": "", 1094 | "symfony/http-kernel": "" 1095 | }, 1096 | "type": "library", 1097 | "extra": { 1098 | "branch-alias": { 1099 | "dev-master": "3.0-dev" 1100 | } 1101 | }, 1102 | "autoload": { 1103 | "psr-4": { 1104 | "Symfony\\Component\\EventDispatcher\\": "" 1105 | }, 1106 | "exclude-from-classmap": [ 1107 | "/Tests/" 1108 | ] 1109 | }, 1110 | "notification-url": "https://packagist.org/downloads/", 1111 | "license": [ 1112 | "MIT" 1113 | ], 1114 | "authors": [ 1115 | { 1116 | "name": "Fabien Potencier", 1117 | "email": "fabien@symfony.com" 1118 | }, 1119 | { 1120 | "name": "Symfony Community", 1121 | "homepage": "https://symfony.com/contributors" 1122 | } 1123 | ], 1124 | "description": "Symfony EventDispatcher Component", 1125 | "homepage": "https://symfony.com", 1126 | "time": "2016-01-27 05:14:46" 1127 | }, 1128 | { 1129 | "name": "symfony/finder", 1130 | "version": "v3.0.3", 1131 | "source": { 1132 | "type": "git", 1133 | "url": "https://github.com/symfony/finder.git", 1134 | "reference": "623bda0abd9aa29e529c8e9c08b3b84171914723" 1135 | }, 1136 | "dist": { 1137 | "type": "zip", 1138 | "url": "https://api.github.com/repos/symfony/finder/zipball/623bda0abd9aa29e529c8e9c08b3b84171914723", 1139 | "reference": "623bda0abd9aa29e529c8e9c08b3b84171914723", 1140 | "shasum": "" 1141 | }, 1142 | "require": { 1143 | "php": ">=5.5.9" 1144 | }, 1145 | "type": "library", 1146 | "extra": { 1147 | "branch-alias": { 1148 | "dev-master": "3.0-dev" 1149 | } 1150 | }, 1151 | "autoload": { 1152 | "psr-4": { 1153 | "Symfony\\Component\\Finder\\": "" 1154 | }, 1155 | "exclude-from-classmap": [ 1156 | "/Tests/" 1157 | ] 1158 | }, 1159 | "notification-url": "https://packagist.org/downloads/", 1160 | "license": [ 1161 | "MIT" 1162 | ], 1163 | "authors": [ 1164 | { 1165 | "name": "Fabien Potencier", 1166 | "email": "fabien@symfony.com" 1167 | }, 1168 | { 1169 | "name": "Symfony Community", 1170 | "homepage": "https://symfony.com/contributors" 1171 | } 1172 | ], 1173 | "description": "Symfony Finder Component", 1174 | "homepage": "https://symfony.com", 1175 | "time": "2016-01-27 05:14:46" 1176 | }, 1177 | { 1178 | "name": "symfony/http-foundation", 1179 | "version": "v3.0.3", 1180 | "source": { 1181 | "type": "git", 1182 | "url": "https://github.com/symfony/http-foundation.git", 1183 | "reference": "52065702c71743c05d415a8facfcad6d4257e8d7" 1184 | }, 1185 | "dist": { 1186 | "type": "zip", 1187 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/52065702c71743c05d415a8facfcad6d4257e8d7", 1188 | "reference": "52065702c71743c05d415a8facfcad6d4257e8d7", 1189 | "shasum": "" 1190 | }, 1191 | "require": { 1192 | "php": ">=5.5.9" 1193 | }, 1194 | "require-dev": { 1195 | "symfony/expression-language": "~2.8|~3.0" 1196 | }, 1197 | "type": "library", 1198 | "extra": { 1199 | "branch-alias": { 1200 | "dev-master": "3.0-dev" 1201 | } 1202 | }, 1203 | "autoload": { 1204 | "psr-4": { 1205 | "Symfony\\Component\\HttpFoundation\\": "" 1206 | }, 1207 | "exclude-from-classmap": [ 1208 | "/Tests/" 1209 | ] 1210 | }, 1211 | "notification-url": "https://packagist.org/downloads/", 1212 | "license": [ 1213 | "MIT" 1214 | ], 1215 | "authors": [ 1216 | { 1217 | "name": "Fabien Potencier", 1218 | "email": "fabien@symfony.com" 1219 | }, 1220 | { 1221 | "name": "Symfony Community", 1222 | "homepage": "https://symfony.com/contributors" 1223 | } 1224 | ], 1225 | "description": "Symfony HttpFoundation Component", 1226 | "homepage": "https://symfony.com", 1227 | "time": "2016-02-28 16:24:34" 1228 | }, 1229 | { 1230 | "name": "symfony/http-kernel", 1231 | "version": "v3.0.3", 1232 | "source": { 1233 | "type": "git", 1234 | "url": "https://github.com/symfony/http-kernel.git", 1235 | "reference": "59c0a1972e9aad87b7a56bbe1ccee26b7535a0db" 1236 | }, 1237 | "dist": { 1238 | "type": "zip", 1239 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/59c0a1972e9aad87b7a56bbe1ccee26b7535a0db", 1240 | "reference": "59c0a1972e9aad87b7a56bbe1ccee26b7535a0db", 1241 | "shasum": "" 1242 | }, 1243 | "require": { 1244 | "php": ">=5.5.9", 1245 | "psr/log": "~1.0", 1246 | "symfony/debug": "~2.8|~3.0", 1247 | "symfony/event-dispatcher": "~2.8|~3.0", 1248 | "symfony/http-foundation": "~2.8|~3.0" 1249 | }, 1250 | "conflict": { 1251 | "symfony/config": "<2.8" 1252 | }, 1253 | "require-dev": { 1254 | "symfony/browser-kit": "~2.8|~3.0", 1255 | "symfony/class-loader": "~2.8|~3.0", 1256 | "symfony/config": "~2.8|~3.0", 1257 | "symfony/console": "~2.8|~3.0", 1258 | "symfony/css-selector": "~2.8|~3.0", 1259 | "symfony/dependency-injection": "~2.8|~3.0", 1260 | "symfony/dom-crawler": "~2.8|~3.0", 1261 | "symfony/expression-language": "~2.8|~3.0", 1262 | "symfony/finder": "~2.8|~3.0", 1263 | "symfony/process": "~2.8|~3.0", 1264 | "symfony/routing": "~2.8|~3.0", 1265 | "symfony/stopwatch": "~2.8|~3.0", 1266 | "symfony/templating": "~2.8|~3.0", 1267 | "symfony/translation": "~2.8|~3.0", 1268 | "symfony/var-dumper": "~2.8|~3.0" 1269 | }, 1270 | "suggest": { 1271 | "symfony/browser-kit": "", 1272 | "symfony/class-loader": "", 1273 | "symfony/config": "", 1274 | "symfony/console": "", 1275 | "symfony/dependency-injection": "", 1276 | "symfony/finder": "", 1277 | "symfony/var-dumper": "" 1278 | }, 1279 | "type": "library", 1280 | "extra": { 1281 | "branch-alias": { 1282 | "dev-master": "3.0-dev" 1283 | } 1284 | }, 1285 | "autoload": { 1286 | "psr-4": { 1287 | "Symfony\\Component\\HttpKernel\\": "" 1288 | }, 1289 | "exclude-from-classmap": [ 1290 | "/Tests/" 1291 | ] 1292 | }, 1293 | "notification-url": "https://packagist.org/downloads/", 1294 | "license": [ 1295 | "MIT" 1296 | ], 1297 | "authors": [ 1298 | { 1299 | "name": "Fabien Potencier", 1300 | "email": "fabien@symfony.com" 1301 | }, 1302 | { 1303 | "name": "Symfony Community", 1304 | "homepage": "https://symfony.com/contributors" 1305 | } 1306 | ], 1307 | "description": "Symfony HttpKernel Component", 1308 | "homepage": "https://symfony.com", 1309 | "time": "2016-02-28 21:33:13" 1310 | }, 1311 | { 1312 | "name": "symfony/polyfill-mbstring", 1313 | "version": "v1.1.1", 1314 | "source": { 1315 | "type": "git", 1316 | "url": "https://github.com/symfony/polyfill-mbstring.git", 1317 | "reference": "1289d16209491b584839022f29257ad859b8532d" 1318 | }, 1319 | "dist": { 1320 | "type": "zip", 1321 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/1289d16209491b584839022f29257ad859b8532d", 1322 | "reference": "1289d16209491b584839022f29257ad859b8532d", 1323 | "shasum": "" 1324 | }, 1325 | "require": { 1326 | "php": ">=5.3.3" 1327 | }, 1328 | "suggest": { 1329 | "ext-mbstring": "For best performance" 1330 | }, 1331 | "type": "library", 1332 | "extra": { 1333 | "branch-alias": { 1334 | "dev-master": "1.1-dev" 1335 | } 1336 | }, 1337 | "autoload": { 1338 | "psr-4": { 1339 | "Symfony\\Polyfill\\Mbstring\\": "" 1340 | }, 1341 | "files": [ 1342 | "bootstrap.php" 1343 | ] 1344 | }, 1345 | "notification-url": "https://packagist.org/downloads/", 1346 | "license": [ 1347 | "MIT" 1348 | ], 1349 | "authors": [ 1350 | { 1351 | "name": "Nicolas Grekas", 1352 | "email": "p@tchwork.com" 1353 | }, 1354 | { 1355 | "name": "Symfony Community", 1356 | "homepage": "https://symfony.com/contributors" 1357 | } 1358 | ], 1359 | "description": "Symfony polyfill for the Mbstring extension", 1360 | "homepage": "https://symfony.com", 1361 | "keywords": [ 1362 | "compatibility", 1363 | "mbstring", 1364 | "polyfill", 1365 | "portable", 1366 | "shim" 1367 | ], 1368 | "time": "2016-01-20 09:13:37" 1369 | }, 1370 | { 1371 | "name": "symfony/polyfill-php56", 1372 | "version": "v1.1.1", 1373 | "source": { 1374 | "type": "git", 1375 | "url": "https://github.com/symfony/polyfill-php56.git", 1376 | "reference": "4d891fff050101a53a4caabb03277284942d1ad9" 1377 | }, 1378 | "dist": { 1379 | "type": "zip", 1380 | "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/4d891fff050101a53a4caabb03277284942d1ad9", 1381 | "reference": "4d891fff050101a53a4caabb03277284942d1ad9", 1382 | "shasum": "" 1383 | }, 1384 | "require": { 1385 | "php": ">=5.3.3", 1386 | "symfony/polyfill-util": "~1.0" 1387 | }, 1388 | "type": "library", 1389 | "extra": { 1390 | "branch-alias": { 1391 | "dev-master": "1.1-dev" 1392 | } 1393 | }, 1394 | "autoload": { 1395 | "psr-4": { 1396 | "Symfony\\Polyfill\\Php56\\": "" 1397 | }, 1398 | "files": [ 1399 | "bootstrap.php" 1400 | ] 1401 | }, 1402 | "notification-url": "https://packagist.org/downloads/", 1403 | "license": [ 1404 | "MIT" 1405 | ], 1406 | "authors": [ 1407 | { 1408 | "name": "Nicolas Grekas", 1409 | "email": "p@tchwork.com" 1410 | }, 1411 | { 1412 | "name": "Symfony Community", 1413 | "homepage": "https://symfony.com/contributors" 1414 | } 1415 | ], 1416 | "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", 1417 | "homepage": "https://symfony.com", 1418 | "keywords": [ 1419 | "compatibility", 1420 | "polyfill", 1421 | "portable", 1422 | "shim" 1423 | ], 1424 | "time": "2016-01-20 09:13:37" 1425 | }, 1426 | { 1427 | "name": "symfony/polyfill-util", 1428 | "version": "v1.1.1", 1429 | "source": { 1430 | "type": "git", 1431 | "url": "https://github.com/symfony/polyfill-util.git", 1432 | "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4" 1433 | }, 1434 | "dist": { 1435 | "type": "zip", 1436 | "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4", 1437 | "reference": "8de62801aa12bc4dfcf85eef5d21981ae7bb3cc4", 1438 | "shasum": "" 1439 | }, 1440 | "require": { 1441 | "php": ">=5.3.3" 1442 | }, 1443 | "type": "library", 1444 | "extra": { 1445 | "branch-alias": { 1446 | "dev-master": "1.1-dev" 1447 | } 1448 | }, 1449 | "autoload": { 1450 | "psr-4": { 1451 | "Symfony\\Polyfill\\Util\\": "" 1452 | } 1453 | }, 1454 | "notification-url": "https://packagist.org/downloads/", 1455 | "license": [ 1456 | "MIT" 1457 | ], 1458 | "authors": [ 1459 | { 1460 | "name": "Nicolas Grekas", 1461 | "email": "p@tchwork.com" 1462 | }, 1463 | { 1464 | "name": "Symfony Community", 1465 | "homepage": "https://symfony.com/contributors" 1466 | } 1467 | ], 1468 | "description": "Symfony utilities for portability of PHP codes", 1469 | "homepage": "https://symfony.com", 1470 | "keywords": [ 1471 | "compat", 1472 | "compatibility", 1473 | "polyfill", 1474 | "shim" 1475 | ], 1476 | "time": "2016-01-20 09:13:37" 1477 | }, 1478 | { 1479 | "name": "symfony/process", 1480 | "version": "v3.0.3", 1481 | "source": { 1482 | "type": "git", 1483 | "url": "https://github.com/symfony/process.git", 1484 | "reference": "dfecef47506179db2501430e732adbf3793099c8" 1485 | }, 1486 | "dist": { 1487 | "type": "zip", 1488 | "url": "https://api.github.com/repos/symfony/process/zipball/dfecef47506179db2501430e732adbf3793099c8", 1489 | "reference": "dfecef47506179db2501430e732adbf3793099c8", 1490 | "shasum": "" 1491 | }, 1492 | "require": { 1493 | "php": ">=5.5.9" 1494 | }, 1495 | "type": "library", 1496 | "extra": { 1497 | "branch-alias": { 1498 | "dev-master": "3.0-dev" 1499 | } 1500 | }, 1501 | "autoload": { 1502 | "psr-4": { 1503 | "Symfony\\Component\\Process\\": "" 1504 | }, 1505 | "exclude-from-classmap": [ 1506 | "/Tests/" 1507 | ] 1508 | }, 1509 | "notification-url": "https://packagist.org/downloads/", 1510 | "license": [ 1511 | "MIT" 1512 | ], 1513 | "authors": [ 1514 | { 1515 | "name": "Fabien Potencier", 1516 | "email": "fabien@symfony.com" 1517 | }, 1518 | { 1519 | "name": "Symfony Community", 1520 | "homepage": "https://symfony.com/contributors" 1521 | } 1522 | ], 1523 | "description": "Symfony Process Component", 1524 | "homepage": "https://symfony.com", 1525 | "time": "2016-02-02 13:44:19" 1526 | }, 1527 | { 1528 | "name": "symfony/routing", 1529 | "version": "v3.0.3", 1530 | "source": { 1531 | "type": "git", 1532 | "url": "https://github.com/symfony/routing.git", 1533 | "reference": "fa1e9a8173cf0077dd995205da453eacd758fdf6" 1534 | }, 1535 | "dist": { 1536 | "type": "zip", 1537 | "url": "https://api.github.com/repos/symfony/routing/zipball/fa1e9a8173cf0077dd995205da453eacd758fdf6", 1538 | "reference": "fa1e9a8173cf0077dd995205da453eacd758fdf6", 1539 | "shasum": "" 1540 | }, 1541 | "require": { 1542 | "php": ">=5.5.9" 1543 | }, 1544 | "conflict": { 1545 | "symfony/config": "<2.8" 1546 | }, 1547 | "require-dev": { 1548 | "doctrine/annotations": "~1.0", 1549 | "doctrine/common": "~2.2", 1550 | "psr/log": "~1.0", 1551 | "symfony/config": "~2.8|~3.0", 1552 | "symfony/expression-language": "~2.8|~3.0", 1553 | "symfony/http-foundation": "~2.8|~3.0", 1554 | "symfony/yaml": "~2.8|~3.0" 1555 | }, 1556 | "suggest": { 1557 | "doctrine/annotations": "For using the annotation loader", 1558 | "symfony/config": "For using the all-in-one router or any loader", 1559 | "symfony/dependency-injection": "For loading routes from a service", 1560 | "symfony/expression-language": "For using expression matching", 1561 | "symfony/http-foundation": "For using a Symfony Request object", 1562 | "symfony/yaml": "For using the YAML loader" 1563 | }, 1564 | "type": "library", 1565 | "extra": { 1566 | "branch-alias": { 1567 | "dev-master": "3.0-dev" 1568 | } 1569 | }, 1570 | "autoload": { 1571 | "psr-4": { 1572 | "Symfony\\Component\\Routing\\": "" 1573 | }, 1574 | "exclude-from-classmap": [ 1575 | "/Tests/" 1576 | ] 1577 | }, 1578 | "notification-url": "https://packagist.org/downloads/", 1579 | "license": [ 1580 | "MIT" 1581 | ], 1582 | "authors": [ 1583 | { 1584 | "name": "Fabien Potencier", 1585 | "email": "fabien@symfony.com" 1586 | }, 1587 | { 1588 | "name": "Symfony Community", 1589 | "homepage": "https://symfony.com/contributors" 1590 | } 1591 | ], 1592 | "description": "Symfony Routing Component", 1593 | "homepage": "https://symfony.com", 1594 | "keywords": [ 1595 | "router", 1596 | "routing", 1597 | "uri", 1598 | "url" 1599 | ], 1600 | "time": "2016-02-04 13:53:13" 1601 | }, 1602 | { 1603 | "name": "symfony/translation", 1604 | "version": "v3.0.3", 1605 | "source": { 1606 | "type": "git", 1607 | "url": "https://github.com/symfony/translation.git", 1608 | "reference": "2de0b6f7ebe43cffd8a06996ebec6aab79ea9e91" 1609 | }, 1610 | "dist": { 1611 | "type": "zip", 1612 | "url": "https://api.github.com/repos/symfony/translation/zipball/2de0b6f7ebe43cffd8a06996ebec6aab79ea9e91", 1613 | "reference": "2de0b6f7ebe43cffd8a06996ebec6aab79ea9e91", 1614 | "shasum": "" 1615 | }, 1616 | "require": { 1617 | "php": ">=5.5.9", 1618 | "symfony/polyfill-mbstring": "~1.0" 1619 | }, 1620 | "conflict": { 1621 | "symfony/config": "<2.8" 1622 | }, 1623 | "require-dev": { 1624 | "psr/log": "~1.0", 1625 | "symfony/config": "~2.8|~3.0", 1626 | "symfony/intl": "~2.8|~3.0", 1627 | "symfony/yaml": "~2.8|~3.0" 1628 | }, 1629 | "suggest": { 1630 | "psr/log": "To use logging capability in translator", 1631 | "symfony/config": "", 1632 | "symfony/yaml": "" 1633 | }, 1634 | "type": "library", 1635 | "extra": { 1636 | "branch-alias": { 1637 | "dev-master": "3.0-dev" 1638 | } 1639 | }, 1640 | "autoload": { 1641 | "psr-4": { 1642 | "Symfony\\Component\\Translation\\": "" 1643 | }, 1644 | "exclude-from-classmap": [ 1645 | "/Tests/" 1646 | ] 1647 | }, 1648 | "notification-url": "https://packagist.org/downloads/", 1649 | "license": [ 1650 | "MIT" 1651 | ], 1652 | "authors": [ 1653 | { 1654 | "name": "Fabien Potencier", 1655 | "email": "fabien@symfony.com" 1656 | }, 1657 | { 1658 | "name": "Symfony Community", 1659 | "homepage": "https://symfony.com/contributors" 1660 | } 1661 | ], 1662 | "description": "Symfony Translation Component", 1663 | "homepage": "https://symfony.com", 1664 | "time": "2016-02-02 13:44:19" 1665 | }, 1666 | { 1667 | "name": "symfony/var-dumper", 1668 | "version": "v3.0.3", 1669 | "source": { 1670 | "type": "git", 1671 | "url": "https://github.com/symfony/var-dumper.git", 1672 | "reference": "9a6a883c48acb215d4825ce9de61dccf93d62074" 1673 | }, 1674 | "dist": { 1675 | "type": "zip", 1676 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/9a6a883c48acb215d4825ce9de61dccf93d62074", 1677 | "reference": "9a6a883c48acb215d4825ce9de61dccf93d62074", 1678 | "shasum": "" 1679 | }, 1680 | "require": { 1681 | "php": ">=5.5.9", 1682 | "symfony/polyfill-mbstring": "~1.0" 1683 | }, 1684 | "require-dev": { 1685 | "twig/twig": "~1.20|~2.0" 1686 | }, 1687 | "suggest": { 1688 | "ext-symfony_debug": "" 1689 | }, 1690 | "type": "library", 1691 | "extra": { 1692 | "branch-alias": { 1693 | "dev-master": "3.0-dev" 1694 | } 1695 | }, 1696 | "autoload": { 1697 | "files": [ 1698 | "Resources/functions/dump.php" 1699 | ], 1700 | "psr-4": { 1701 | "Symfony\\Component\\VarDumper\\": "" 1702 | }, 1703 | "exclude-from-classmap": [ 1704 | "/Tests/" 1705 | ] 1706 | }, 1707 | "notification-url": "https://packagist.org/downloads/", 1708 | "license": [ 1709 | "MIT" 1710 | ], 1711 | "authors": [ 1712 | { 1713 | "name": "Nicolas Grekas", 1714 | "email": "p@tchwork.com" 1715 | }, 1716 | { 1717 | "name": "Symfony Community", 1718 | "homepage": "https://symfony.com/contributors" 1719 | } 1720 | ], 1721 | "description": "Symfony mechanism for exploring and dumping PHP variables", 1722 | "homepage": "https://symfony.com", 1723 | "keywords": [ 1724 | "debug", 1725 | "dump" 1726 | ], 1727 | "time": "2016-02-13 09:23:44" 1728 | }, 1729 | { 1730 | "name": "vlucas/phpdotenv", 1731 | "version": "v2.2.0", 1732 | "source": { 1733 | "type": "git", 1734 | "url": "https://github.com/vlucas/phpdotenv.git", 1735 | "reference": "9caf304153dc2288e4970caec6f1f3b3bc205412" 1736 | }, 1737 | "dist": { 1738 | "type": "zip", 1739 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/9caf304153dc2288e4970caec6f1f3b3bc205412", 1740 | "reference": "9caf304153dc2288e4970caec6f1f3b3bc205412", 1741 | "shasum": "" 1742 | }, 1743 | "require": { 1744 | "php": ">=5.3.9" 1745 | }, 1746 | "require-dev": { 1747 | "phpunit/phpunit": "^4.8|^5.0" 1748 | }, 1749 | "type": "library", 1750 | "extra": { 1751 | "branch-alias": { 1752 | "dev-master": "2.2-dev" 1753 | } 1754 | }, 1755 | "autoload": { 1756 | "psr-4": { 1757 | "Dotenv\\": "src/" 1758 | } 1759 | }, 1760 | "notification-url": "https://packagist.org/downloads/", 1761 | "license": [ 1762 | "BSD" 1763 | ], 1764 | "authors": [ 1765 | { 1766 | "name": "Vance Lucas", 1767 | "email": "vance@vancelucas.com", 1768 | "homepage": "http://www.vancelucas.com" 1769 | } 1770 | ], 1771 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 1772 | "homepage": "http://github.com/vlucas/phpdotenv", 1773 | "keywords": [ 1774 | "dotenv", 1775 | "env", 1776 | "environment" 1777 | ], 1778 | "time": "2015-12-29 15:10:30" 1779 | } 1780 | ], 1781 | "packages-dev": [ 1782 | { 1783 | "name": "doctrine/instantiator", 1784 | "version": "1.0.5", 1785 | "source": { 1786 | "type": "git", 1787 | "url": "https://github.com/doctrine/instantiator.git", 1788 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" 1789 | }, 1790 | "dist": { 1791 | "type": "zip", 1792 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", 1793 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", 1794 | "shasum": "" 1795 | }, 1796 | "require": { 1797 | "php": ">=5.3,<8.0-DEV" 1798 | }, 1799 | "require-dev": { 1800 | "athletic/athletic": "~0.1.8", 1801 | "ext-pdo": "*", 1802 | "ext-phar": "*", 1803 | "phpunit/phpunit": "~4.0", 1804 | "squizlabs/php_codesniffer": "~2.0" 1805 | }, 1806 | "type": "library", 1807 | "extra": { 1808 | "branch-alias": { 1809 | "dev-master": "1.0.x-dev" 1810 | } 1811 | }, 1812 | "autoload": { 1813 | "psr-4": { 1814 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 1815 | } 1816 | }, 1817 | "notification-url": "https://packagist.org/downloads/", 1818 | "license": [ 1819 | "MIT" 1820 | ], 1821 | "authors": [ 1822 | { 1823 | "name": "Marco Pivetta", 1824 | "email": "ocramius@gmail.com", 1825 | "homepage": "http://ocramius.github.com/" 1826 | } 1827 | ], 1828 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 1829 | "homepage": "https://github.com/doctrine/instantiator", 1830 | "keywords": [ 1831 | "constructor", 1832 | "instantiate" 1833 | ], 1834 | "time": "2015-06-14 21:17:01" 1835 | }, 1836 | { 1837 | "name": "fzaninotto/faker", 1838 | "version": "v1.5.0", 1839 | "source": { 1840 | "type": "git", 1841 | "url": "https://github.com/fzaninotto/Faker.git", 1842 | "reference": "d0190b156bcca848d401fb80f31f504f37141c8d" 1843 | }, 1844 | "dist": { 1845 | "type": "zip", 1846 | "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d", 1847 | "reference": "d0190b156bcca848d401fb80f31f504f37141c8d", 1848 | "shasum": "" 1849 | }, 1850 | "require": { 1851 | "php": ">=5.3.3" 1852 | }, 1853 | "require-dev": { 1854 | "phpunit/phpunit": "~4.0", 1855 | "squizlabs/php_codesniffer": "~1.5" 1856 | }, 1857 | "suggest": { 1858 | "ext-intl": "*" 1859 | }, 1860 | "type": "library", 1861 | "extra": { 1862 | "branch-alias": { 1863 | "dev-master": "1.5.x-dev" 1864 | } 1865 | }, 1866 | "autoload": { 1867 | "psr-4": { 1868 | "Faker\\": "src/Faker/" 1869 | } 1870 | }, 1871 | "notification-url": "https://packagist.org/downloads/", 1872 | "license": [ 1873 | "MIT" 1874 | ], 1875 | "authors": [ 1876 | { 1877 | "name": "François Zaninotto" 1878 | } 1879 | ], 1880 | "description": "Faker is a PHP library that generates fake data for you.", 1881 | "keywords": [ 1882 | "data", 1883 | "faker", 1884 | "fixtures" 1885 | ], 1886 | "time": "2015-05-29 06:29:14" 1887 | }, 1888 | { 1889 | "name": "hamcrest/hamcrest-php", 1890 | "version": "v1.2.2", 1891 | "source": { 1892 | "type": "git", 1893 | "url": "https://github.com/hamcrest/hamcrest-php.git", 1894 | "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c" 1895 | }, 1896 | "dist": { 1897 | "type": "zip", 1898 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c", 1899 | "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c", 1900 | "shasum": "" 1901 | }, 1902 | "require": { 1903 | "php": ">=5.3.2" 1904 | }, 1905 | "replace": { 1906 | "cordoval/hamcrest-php": "*", 1907 | "davedevelopment/hamcrest-php": "*", 1908 | "kodova/hamcrest-php": "*" 1909 | }, 1910 | "require-dev": { 1911 | "phpunit/php-file-iterator": "1.3.3", 1912 | "satooshi/php-coveralls": "dev-master" 1913 | }, 1914 | "type": "library", 1915 | "autoload": { 1916 | "classmap": [ 1917 | "hamcrest" 1918 | ], 1919 | "files": [ 1920 | "hamcrest/Hamcrest.php" 1921 | ] 1922 | }, 1923 | "notification-url": "https://packagist.org/downloads/", 1924 | "license": [ 1925 | "BSD" 1926 | ], 1927 | "description": "This is the PHP port of Hamcrest Matchers", 1928 | "keywords": [ 1929 | "test" 1930 | ], 1931 | "time": "2015-05-11 14:41:42" 1932 | }, 1933 | { 1934 | "name": "mockery/mockery", 1935 | "version": "0.9.4", 1936 | "source": { 1937 | "type": "git", 1938 | "url": "https://github.com/padraic/mockery.git", 1939 | "reference": "70bba85e4aabc9449626651f48b9018ede04f86b" 1940 | }, 1941 | "dist": { 1942 | "type": "zip", 1943 | "url": "https://api.github.com/repos/padraic/mockery/zipball/70bba85e4aabc9449626651f48b9018ede04f86b", 1944 | "reference": "70bba85e4aabc9449626651f48b9018ede04f86b", 1945 | "shasum": "" 1946 | }, 1947 | "require": { 1948 | "hamcrest/hamcrest-php": "~1.1", 1949 | "lib-pcre": ">=7.0", 1950 | "php": ">=5.3.2" 1951 | }, 1952 | "require-dev": { 1953 | "phpunit/phpunit": "~4.0" 1954 | }, 1955 | "type": "library", 1956 | "extra": { 1957 | "branch-alias": { 1958 | "dev-master": "0.9.x-dev" 1959 | } 1960 | }, 1961 | "autoload": { 1962 | "psr-0": { 1963 | "Mockery": "library/" 1964 | } 1965 | }, 1966 | "notification-url": "https://packagist.org/downloads/", 1967 | "license": [ 1968 | "BSD-3-Clause" 1969 | ], 1970 | "authors": [ 1971 | { 1972 | "name": "Pádraic Brady", 1973 | "email": "padraic.brady@gmail.com", 1974 | "homepage": "http://blog.astrumfutura.com" 1975 | }, 1976 | { 1977 | "name": "Dave Marshall", 1978 | "email": "dave.marshall@atstsolutions.co.uk", 1979 | "homepage": "http://davedevelopment.co.uk" 1980 | } 1981 | ], 1982 | "description": "Mockery is a simple yet flexible PHP mock object framework for use in unit testing with PHPUnit, PHPSpec or any other testing framework. Its core goal is to offer a test double framework with a succinct API capable of clearly defining all possible object operations and interactions using a human readable Domain Specific Language (DSL). Designed as a drop in alternative to PHPUnit's phpunit-mock-objects library, Mockery is easy to integrate with PHPUnit and can operate alongside phpunit-mock-objects without the World ending.", 1983 | "homepage": "http://github.com/padraic/mockery", 1984 | "keywords": [ 1985 | "BDD", 1986 | "TDD", 1987 | "library", 1988 | "mock", 1989 | "mock objects", 1990 | "mockery", 1991 | "stub", 1992 | "test", 1993 | "test double", 1994 | "testing" 1995 | ], 1996 | "time": "2015-04-02 19:54:00" 1997 | }, 1998 | { 1999 | "name": "phpdocumentor/reflection-docblock", 2000 | "version": "2.0.4", 2001 | "source": { 2002 | "type": "git", 2003 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 2004 | "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8" 2005 | }, 2006 | "dist": { 2007 | "type": "zip", 2008 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8", 2009 | "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8", 2010 | "shasum": "" 2011 | }, 2012 | "require": { 2013 | "php": ">=5.3.3" 2014 | }, 2015 | "require-dev": { 2016 | "phpunit/phpunit": "~4.0" 2017 | }, 2018 | "suggest": { 2019 | "dflydev/markdown": "~1.0", 2020 | "erusev/parsedown": "~1.0" 2021 | }, 2022 | "type": "library", 2023 | "extra": { 2024 | "branch-alias": { 2025 | "dev-master": "2.0.x-dev" 2026 | } 2027 | }, 2028 | "autoload": { 2029 | "psr-0": { 2030 | "phpDocumentor": [ 2031 | "src/" 2032 | ] 2033 | } 2034 | }, 2035 | "notification-url": "https://packagist.org/downloads/", 2036 | "license": [ 2037 | "MIT" 2038 | ], 2039 | "authors": [ 2040 | { 2041 | "name": "Mike van Riel", 2042 | "email": "mike.vanriel@naenius.com" 2043 | } 2044 | ], 2045 | "time": "2015-02-03 12:10:50" 2046 | }, 2047 | { 2048 | "name": "phpspec/prophecy", 2049 | "version": "v1.6.0", 2050 | "source": { 2051 | "type": "git", 2052 | "url": "https://github.com/phpspec/prophecy.git", 2053 | "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972" 2054 | }, 2055 | "dist": { 2056 | "type": "zip", 2057 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/3c91bdf81797d725b14cb62906f9a4ce44235972", 2058 | "reference": "3c91bdf81797d725b14cb62906f9a4ce44235972", 2059 | "shasum": "" 2060 | }, 2061 | "require": { 2062 | "doctrine/instantiator": "^1.0.2", 2063 | "php": "^5.3|^7.0", 2064 | "phpdocumentor/reflection-docblock": "~2.0", 2065 | "sebastian/comparator": "~1.1", 2066 | "sebastian/recursion-context": "~1.0" 2067 | }, 2068 | "require-dev": { 2069 | "phpspec/phpspec": "~2.0" 2070 | }, 2071 | "type": "library", 2072 | "extra": { 2073 | "branch-alias": { 2074 | "dev-master": "1.5.x-dev" 2075 | } 2076 | }, 2077 | "autoload": { 2078 | "psr-0": { 2079 | "Prophecy\\": "src/" 2080 | } 2081 | }, 2082 | "notification-url": "https://packagist.org/downloads/", 2083 | "license": [ 2084 | "MIT" 2085 | ], 2086 | "authors": [ 2087 | { 2088 | "name": "Konstantin Kudryashov", 2089 | "email": "ever.zet@gmail.com", 2090 | "homepage": "http://everzet.com" 2091 | }, 2092 | { 2093 | "name": "Marcello Duarte", 2094 | "email": "marcello.duarte@gmail.com" 2095 | } 2096 | ], 2097 | "description": "Highly opinionated mocking framework for PHP 5.3+", 2098 | "homepage": "https://github.com/phpspec/prophecy", 2099 | "keywords": [ 2100 | "Double", 2101 | "Dummy", 2102 | "fake", 2103 | "mock", 2104 | "spy", 2105 | "stub" 2106 | ], 2107 | "time": "2016-02-15 07:46:21" 2108 | }, 2109 | { 2110 | "name": "phpunit/php-code-coverage", 2111 | "version": "2.2.4", 2112 | "source": { 2113 | "type": "git", 2114 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 2115 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979" 2116 | }, 2117 | "dist": { 2118 | "type": "zip", 2119 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979", 2120 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979", 2121 | "shasum": "" 2122 | }, 2123 | "require": { 2124 | "php": ">=5.3.3", 2125 | "phpunit/php-file-iterator": "~1.3", 2126 | "phpunit/php-text-template": "~1.2", 2127 | "phpunit/php-token-stream": "~1.3", 2128 | "sebastian/environment": "^1.3.2", 2129 | "sebastian/version": "~1.0" 2130 | }, 2131 | "require-dev": { 2132 | "ext-xdebug": ">=2.1.4", 2133 | "phpunit/phpunit": "~4" 2134 | }, 2135 | "suggest": { 2136 | "ext-dom": "*", 2137 | "ext-xdebug": ">=2.2.1", 2138 | "ext-xmlwriter": "*" 2139 | }, 2140 | "type": "library", 2141 | "extra": { 2142 | "branch-alias": { 2143 | "dev-master": "2.2.x-dev" 2144 | } 2145 | }, 2146 | "autoload": { 2147 | "classmap": [ 2148 | "src/" 2149 | ] 2150 | }, 2151 | "notification-url": "https://packagist.org/downloads/", 2152 | "license": [ 2153 | "BSD-3-Clause" 2154 | ], 2155 | "authors": [ 2156 | { 2157 | "name": "Sebastian Bergmann", 2158 | "email": "sb@sebastian-bergmann.de", 2159 | "role": "lead" 2160 | } 2161 | ], 2162 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 2163 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 2164 | "keywords": [ 2165 | "coverage", 2166 | "testing", 2167 | "xunit" 2168 | ], 2169 | "time": "2015-10-06 15:47:00" 2170 | }, 2171 | { 2172 | "name": "phpunit/php-file-iterator", 2173 | "version": "1.4.1", 2174 | "source": { 2175 | "type": "git", 2176 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 2177 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0" 2178 | }, 2179 | "dist": { 2180 | "type": "zip", 2181 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 2182 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 2183 | "shasum": "" 2184 | }, 2185 | "require": { 2186 | "php": ">=5.3.3" 2187 | }, 2188 | "type": "library", 2189 | "extra": { 2190 | "branch-alias": { 2191 | "dev-master": "1.4.x-dev" 2192 | } 2193 | }, 2194 | "autoload": { 2195 | "classmap": [ 2196 | "src/" 2197 | ] 2198 | }, 2199 | "notification-url": "https://packagist.org/downloads/", 2200 | "license": [ 2201 | "BSD-3-Clause" 2202 | ], 2203 | "authors": [ 2204 | { 2205 | "name": "Sebastian Bergmann", 2206 | "email": "sb@sebastian-bergmann.de", 2207 | "role": "lead" 2208 | } 2209 | ], 2210 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 2211 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 2212 | "keywords": [ 2213 | "filesystem", 2214 | "iterator" 2215 | ], 2216 | "time": "2015-06-21 13:08:43" 2217 | }, 2218 | { 2219 | "name": "phpunit/php-text-template", 2220 | "version": "1.2.1", 2221 | "source": { 2222 | "type": "git", 2223 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 2224 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 2225 | }, 2226 | "dist": { 2227 | "type": "zip", 2228 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2229 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2230 | "shasum": "" 2231 | }, 2232 | "require": { 2233 | "php": ">=5.3.3" 2234 | }, 2235 | "type": "library", 2236 | "autoload": { 2237 | "classmap": [ 2238 | "src/" 2239 | ] 2240 | }, 2241 | "notification-url": "https://packagist.org/downloads/", 2242 | "license": [ 2243 | "BSD-3-Clause" 2244 | ], 2245 | "authors": [ 2246 | { 2247 | "name": "Sebastian Bergmann", 2248 | "email": "sebastian@phpunit.de", 2249 | "role": "lead" 2250 | } 2251 | ], 2252 | "description": "Simple template engine.", 2253 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 2254 | "keywords": [ 2255 | "template" 2256 | ], 2257 | "time": "2015-06-21 13:50:34" 2258 | }, 2259 | { 2260 | "name": "phpunit/php-timer", 2261 | "version": "1.0.7", 2262 | "source": { 2263 | "type": "git", 2264 | "url": "https://github.com/sebastianbergmann/php-timer.git", 2265 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b" 2266 | }, 2267 | "dist": { 2268 | "type": "zip", 2269 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 2270 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 2271 | "shasum": "" 2272 | }, 2273 | "require": { 2274 | "php": ">=5.3.3" 2275 | }, 2276 | "type": "library", 2277 | "autoload": { 2278 | "classmap": [ 2279 | "src/" 2280 | ] 2281 | }, 2282 | "notification-url": "https://packagist.org/downloads/", 2283 | "license": [ 2284 | "BSD-3-Clause" 2285 | ], 2286 | "authors": [ 2287 | { 2288 | "name": "Sebastian Bergmann", 2289 | "email": "sb@sebastian-bergmann.de", 2290 | "role": "lead" 2291 | } 2292 | ], 2293 | "description": "Utility class for timing", 2294 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 2295 | "keywords": [ 2296 | "timer" 2297 | ], 2298 | "time": "2015-06-21 08:01:12" 2299 | }, 2300 | { 2301 | "name": "phpunit/php-token-stream", 2302 | "version": "1.4.8", 2303 | "source": { 2304 | "type": "git", 2305 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 2306 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da" 2307 | }, 2308 | "dist": { 2309 | "type": "zip", 2310 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 2311 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 2312 | "shasum": "" 2313 | }, 2314 | "require": { 2315 | "ext-tokenizer": "*", 2316 | "php": ">=5.3.3" 2317 | }, 2318 | "require-dev": { 2319 | "phpunit/phpunit": "~4.2" 2320 | }, 2321 | "type": "library", 2322 | "extra": { 2323 | "branch-alias": { 2324 | "dev-master": "1.4-dev" 2325 | } 2326 | }, 2327 | "autoload": { 2328 | "classmap": [ 2329 | "src/" 2330 | ] 2331 | }, 2332 | "notification-url": "https://packagist.org/downloads/", 2333 | "license": [ 2334 | "BSD-3-Clause" 2335 | ], 2336 | "authors": [ 2337 | { 2338 | "name": "Sebastian Bergmann", 2339 | "email": "sebastian@phpunit.de" 2340 | } 2341 | ], 2342 | "description": "Wrapper around PHP's tokenizer extension.", 2343 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 2344 | "keywords": [ 2345 | "tokenizer" 2346 | ], 2347 | "time": "2015-09-15 10:49:45" 2348 | }, 2349 | { 2350 | "name": "phpunit/phpunit", 2351 | "version": "4.8.24", 2352 | "source": { 2353 | "type": "git", 2354 | "url": "https://github.com/sebastianbergmann/phpunit.git", 2355 | "reference": "a1066c562c52900a142a0e2bbf0582994671385e" 2356 | }, 2357 | "dist": { 2358 | "type": "zip", 2359 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a1066c562c52900a142a0e2bbf0582994671385e", 2360 | "reference": "a1066c562c52900a142a0e2bbf0582994671385e", 2361 | "shasum": "" 2362 | }, 2363 | "require": { 2364 | "ext-dom": "*", 2365 | "ext-json": "*", 2366 | "ext-pcre": "*", 2367 | "ext-reflection": "*", 2368 | "ext-spl": "*", 2369 | "php": ">=5.3.3", 2370 | "phpspec/prophecy": "^1.3.1", 2371 | "phpunit/php-code-coverage": "~2.1", 2372 | "phpunit/php-file-iterator": "~1.4", 2373 | "phpunit/php-text-template": "~1.2", 2374 | "phpunit/php-timer": ">=1.0.6", 2375 | "phpunit/phpunit-mock-objects": "~2.3", 2376 | "sebastian/comparator": "~1.1", 2377 | "sebastian/diff": "~1.2", 2378 | "sebastian/environment": "~1.3", 2379 | "sebastian/exporter": "~1.2", 2380 | "sebastian/global-state": "~1.0", 2381 | "sebastian/version": "~1.0", 2382 | "symfony/yaml": "~2.1|~3.0" 2383 | }, 2384 | "suggest": { 2385 | "phpunit/php-invoker": "~1.1" 2386 | }, 2387 | "bin": [ 2388 | "phpunit" 2389 | ], 2390 | "type": "library", 2391 | "extra": { 2392 | "branch-alias": { 2393 | "dev-master": "4.8.x-dev" 2394 | } 2395 | }, 2396 | "autoload": { 2397 | "classmap": [ 2398 | "src/" 2399 | ] 2400 | }, 2401 | "notification-url": "https://packagist.org/downloads/", 2402 | "license": [ 2403 | "BSD-3-Clause" 2404 | ], 2405 | "authors": [ 2406 | { 2407 | "name": "Sebastian Bergmann", 2408 | "email": "sebastian@phpunit.de", 2409 | "role": "lead" 2410 | } 2411 | ], 2412 | "description": "The PHP Unit Testing framework.", 2413 | "homepage": "https://phpunit.de/", 2414 | "keywords": [ 2415 | "phpunit", 2416 | "testing", 2417 | "xunit" 2418 | ], 2419 | "time": "2016-03-14 06:16:08" 2420 | }, 2421 | { 2422 | "name": "phpunit/phpunit-mock-objects", 2423 | "version": "2.3.8", 2424 | "source": { 2425 | "type": "git", 2426 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 2427 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983" 2428 | }, 2429 | "dist": { 2430 | "type": "zip", 2431 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983", 2432 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983", 2433 | "shasum": "" 2434 | }, 2435 | "require": { 2436 | "doctrine/instantiator": "^1.0.2", 2437 | "php": ">=5.3.3", 2438 | "phpunit/php-text-template": "~1.2", 2439 | "sebastian/exporter": "~1.2" 2440 | }, 2441 | "require-dev": { 2442 | "phpunit/phpunit": "~4.4" 2443 | }, 2444 | "suggest": { 2445 | "ext-soap": "*" 2446 | }, 2447 | "type": "library", 2448 | "extra": { 2449 | "branch-alias": { 2450 | "dev-master": "2.3.x-dev" 2451 | } 2452 | }, 2453 | "autoload": { 2454 | "classmap": [ 2455 | "src/" 2456 | ] 2457 | }, 2458 | "notification-url": "https://packagist.org/downloads/", 2459 | "license": [ 2460 | "BSD-3-Clause" 2461 | ], 2462 | "authors": [ 2463 | { 2464 | "name": "Sebastian Bergmann", 2465 | "email": "sb@sebastian-bergmann.de", 2466 | "role": "lead" 2467 | } 2468 | ], 2469 | "description": "Mock Object library for PHPUnit", 2470 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 2471 | "keywords": [ 2472 | "mock", 2473 | "xunit" 2474 | ], 2475 | "time": "2015-10-02 06:51:40" 2476 | }, 2477 | { 2478 | "name": "sebastian/comparator", 2479 | "version": "1.2.0", 2480 | "source": { 2481 | "type": "git", 2482 | "url": "https://github.com/sebastianbergmann/comparator.git", 2483 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22" 2484 | }, 2485 | "dist": { 2486 | "type": "zip", 2487 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22", 2488 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22", 2489 | "shasum": "" 2490 | }, 2491 | "require": { 2492 | "php": ">=5.3.3", 2493 | "sebastian/diff": "~1.2", 2494 | "sebastian/exporter": "~1.2" 2495 | }, 2496 | "require-dev": { 2497 | "phpunit/phpunit": "~4.4" 2498 | }, 2499 | "type": "library", 2500 | "extra": { 2501 | "branch-alias": { 2502 | "dev-master": "1.2.x-dev" 2503 | } 2504 | }, 2505 | "autoload": { 2506 | "classmap": [ 2507 | "src/" 2508 | ] 2509 | }, 2510 | "notification-url": "https://packagist.org/downloads/", 2511 | "license": [ 2512 | "BSD-3-Clause" 2513 | ], 2514 | "authors": [ 2515 | { 2516 | "name": "Jeff Welch", 2517 | "email": "whatthejeff@gmail.com" 2518 | }, 2519 | { 2520 | "name": "Volker Dusch", 2521 | "email": "github@wallbash.com" 2522 | }, 2523 | { 2524 | "name": "Bernhard Schussek", 2525 | "email": "bschussek@2bepublished.at" 2526 | }, 2527 | { 2528 | "name": "Sebastian Bergmann", 2529 | "email": "sebastian@phpunit.de" 2530 | } 2531 | ], 2532 | "description": "Provides the functionality to compare PHP values for equality", 2533 | "homepage": "http://www.github.com/sebastianbergmann/comparator", 2534 | "keywords": [ 2535 | "comparator", 2536 | "compare", 2537 | "equality" 2538 | ], 2539 | "time": "2015-07-26 15:48:44" 2540 | }, 2541 | { 2542 | "name": "sebastian/diff", 2543 | "version": "1.4.1", 2544 | "source": { 2545 | "type": "git", 2546 | "url": "https://github.com/sebastianbergmann/diff.git", 2547 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e" 2548 | }, 2549 | "dist": { 2550 | "type": "zip", 2551 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e", 2552 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e", 2553 | "shasum": "" 2554 | }, 2555 | "require": { 2556 | "php": ">=5.3.3" 2557 | }, 2558 | "require-dev": { 2559 | "phpunit/phpunit": "~4.8" 2560 | }, 2561 | "type": "library", 2562 | "extra": { 2563 | "branch-alias": { 2564 | "dev-master": "1.4-dev" 2565 | } 2566 | }, 2567 | "autoload": { 2568 | "classmap": [ 2569 | "src/" 2570 | ] 2571 | }, 2572 | "notification-url": "https://packagist.org/downloads/", 2573 | "license": [ 2574 | "BSD-3-Clause" 2575 | ], 2576 | "authors": [ 2577 | { 2578 | "name": "Kore Nordmann", 2579 | "email": "mail@kore-nordmann.de" 2580 | }, 2581 | { 2582 | "name": "Sebastian Bergmann", 2583 | "email": "sebastian@phpunit.de" 2584 | } 2585 | ], 2586 | "description": "Diff implementation", 2587 | "homepage": "https://github.com/sebastianbergmann/diff", 2588 | "keywords": [ 2589 | "diff" 2590 | ], 2591 | "time": "2015-12-08 07:14:41" 2592 | }, 2593 | { 2594 | "name": "sebastian/environment", 2595 | "version": "1.3.5", 2596 | "source": { 2597 | "type": "git", 2598 | "url": "https://github.com/sebastianbergmann/environment.git", 2599 | "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf" 2600 | }, 2601 | "dist": { 2602 | "type": "zip", 2603 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf", 2604 | "reference": "dc7a29032cf72b54f36dac15a1ca5b3a1b6029bf", 2605 | "shasum": "" 2606 | }, 2607 | "require": { 2608 | "php": ">=5.3.3" 2609 | }, 2610 | "require-dev": { 2611 | "phpunit/phpunit": "~4.4" 2612 | }, 2613 | "type": "library", 2614 | "extra": { 2615 | "branch-alias": { 2616 | "dev-master": "1.3.x-dev" 2617 | } 2618 | }, 2619 | "autoload": { 2620 | "classmap": [ 2621 | "src/" 2622 | ] 2623 | }, 2624 | "notification-url": "https://packagist.org/downloads/", 2625 | "license": [ 2626 | "BSD-3-Clause" 2627 | ], 2628 | "authors": [ 2629 | { 2630 | "name": "Sebastian Bergmann", 2631 | "email": "sebastian@phpunit.de" 2632 | } 2633 | ], 2634 | "description": "Provides functionality to handle HHVM/PHP environments", 2635 | "homepage": "http://www.github.com/sebastianbergmann/environment", 2636 | "keywords": [ 2637 | "Xdebug", 2638 | "environment", 2639 | "hhvm" 2640 | ], 2641 | "time": "2016-02-26 18:40:46" 2642 | }, 2643 | { 2644 | "name": "sebastian/exporter", 2645 | "version": "1.2.1", 2646 | "source": { 2647 | "type": "git", 2648 | "url": "https://github.com/sebastianbergmann/exporter.git", 2649 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e" 2650 | }, 2651 | "dist": { 2652 | "type": "zip", 2653 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e", 2654 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e", 2655 | "shasum": "" 2656 | }, 2657 | "require": { 2658 | "php": ">=5.3.3", 2659 | "sebastian/recursion-context": "~1.0" 2660 | }, 2661 | "require-dev": { 2662 | "phpunit/phpunit": "~4.4" 2663 | }, 2664 | "type": "library", 2665 | "extra": { 2666 | "branch-alias": { 2667 | "dev-master": "1.2.x-dev" 2668 | } 2669 | }, 2670 | "autoload": { 2671 | "classmap": [ 2672 | "src/" 2673 | ] 2674 | }, 2675 | "notification-url": "https://packagist.org/downloads/", 2676 | "license": [ 2677 | "BSD-3-Clause" 2678 | ], 2679 | "authors": [ 2680 | { 2681 | "name": "Jeff Welch", 2682 | "email": "whatthejeff@gmail.com" 2683 | }, 2684 | { 2685 | "name": "Volker Dusch", 2686 | "email": "github@wallbash.com" 2687 | }, 2688 | { 2689 | "name": "Bernhard Schussek", 2690 | "email": "bschussek@2bepublished.at" 2691 | }, 2692 | { 2693 | "name": "Sebastian Bergmann", 2694 | "email": "sebastian@phpunit.de" 2695 | }, 2696 | { 2697 | "name": "Adam Harvey", 2698 | "email": "aharvey@php.net" 2699 | } 2700 | ], 2701 | "description": "Provides the functionality to export PHP variables for visualization", 2702 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 2703 | "keywords": [ 2704 | "export", 2705 | "exporter" 2706 | ], 2707 | "time": "2015-06-21 07:55:53" 2708 | }, 2709 | { 2710 | "name": "sebastian/global-state", 2711 | "version": "1.1.1", 2712 | "source": { 2713 | "type": "git", 2714 | "url": "https://github.com/sebastianbergmann/global-state.git", 2715 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" 2716 | }, 2717 | "dist": { 2718 | "type": "zip", 2719 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", 2720 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", 2721 | "shasum": "" 2722 | }, 2723 | "require": { 2724 | "php": ">=5.3.3" 2725 | }, 2726 | "require-dev": { 2727 | "phpunit/phpunit": "~4.2" 2728 | }, 2729 | "suggest": { 2730 | "ext-uopz": "*" 2731 | }, 2732 | "type": "library", 2733 | "extra": { 2734 | "branch-alias": { 2735 | "dev-master": "1.0-dev" 2736 | } 2737 | }, 2738 | "autoload": { 2739 | "classmap": [ 2740 | "src/" 2741 | ] 2742 | }, 2743 | "notification-url": "https://packagist.org/downloads/", 2744 | "license": [ 2745 | "BSD-3-Clause" 2746 | ], 2747 | "authors": [ 2748 | { 2749 | "name": "Sebastian Bergmann", 2750 | "email": "sebastian@phpunit.de" 2751 | } 2752 | ], 2753 | "description": "Snapshotting of global state", 2754 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 2755 | "keywords": [ 2756 | "global state" 2757 | ], 2758 | "time": "2015-10-12 03:26:01" 2759 | }, 2760 | { 2761 | "name": "sebastian/recursion-context", 2762 | "version": "1.0.2", 2763 | "source": { 2764 | "type": "git", 2765 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 2766 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791" 2767 | }, 2768 | "dist": { 2769 | "type": "zip", 2770 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791", 2771 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791", 2772 | "shasum": "" 2773 | }, 2774 | "require": { 2775 | "php": ">=5.3.3" 2776 | }, 2777 | "require-dev": { 2778 | "phpunit/phpunit": "~4.4" 2779 | }, 2780 | "type": "library", 2781 | "extra": { 2782 | "branch-alias": { 2783 | "dev-master": "1.0.x-dev" 2784 | } 2785 | }, 2786 | "autoload": { 2787 | "classmap": [ 2788 | "src/" 2789 | ] 2790 | }, 2791 | "notification-url": "https://packagist.org/downloads/", 2792 | "license": [ 2793 | "BSD-3-Clause" 2794 | ], 2795 | "authors": [ 2796 | { 2797 | "name": "Jeff Welch", 2798 | "email": "whatthejeff@gmail.com" 2799 | }, 2800 | { 2801 | "name": "Sebastian Bergmann", 2802 | "email": "sebastian@phpunit.de" 2803 | }, 2804 | { 2805 | "name": "Adam Harvey", 2806 | "email": "aharvey@php.net" 2807 | } 2808 | ], 2809 | "description": "Provides functionality to recursively process PHP variables", 2810 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 2811 | "time": "2015-11-11 19:50:13" 2812 | }, 2813 | { 2814 | "name": "sebastian/version", 2815 | "version": "1.0.6", 2816 | "source": { 2817 | "type": "git", 2818 | "url": "https://github.com/sebastianbergmann/version.git", 2819 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6" 2820 | }, 2821 | "dist": { 2822 | "type": "zip", 2823 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2824 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2825 | "shasum": "" 2826 | }, 2827 | "type": "library", 2828 | "autoload": { 2829 | "classmap": [ 2830 | "src/" 2831 | ] 2832 | }, 2833 | "notification-url": "https://packagist.org/downloads/", 2834 | "license": [ 2835 | "BSD-3-Clause" 2836 | ], 2837 | "authors": [ 2838 | { 2839 | "name": "Sebastian Bergmann", 2840 | "email": "sebastian@phpunit.de", 2841 | "role": "lead" 2842 | } 2843 | ], 2844 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 2845 | "homepage": "https://github.com/sebastianbergmann/version", 2846 | "time": "2015-06-21 13:59:46" 2847 | }, 2848 | { 2849 | "name": "symfony/css-selector", 2850 | "version": "v3.0.3", 2851 | "source": { 2852 | "type": "git", 2853 | "url": "https://github.com/symfony/css-selector.git", 2854 | "reference": "6605602690578496091ac20ec7a5cbd160d4dff4" 2855 | }, 2856 | "dist": { 2857 | "type": "zip", 2858 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/6605602690578496091ac20ec7a5cbd160d4dff4", 2859 | "reference": "6605602690578496091ac20ec7a5cbd160d4dff4", 2860 | "shasum": "" 2861 | }, 2862 | "require": { 2863 | "php": ">=5.5.9" 2864 | }, 2865 | "type": "library", 2866 | "extra": { 2867 | "branch-alias": { 2868 | "dev-master": "3.0-dev" 2869 | } 2870 | }, 2871 | "autoload": { 2872 | "psr-4": { 2873 | "Symfony\\Component\\CssSelector\\": "" 2874 | }, 2875 | "exclude-from-classmap": [ 2876 | "/Tests/" 2877 | ] 2878 | }, 2879 | "notification-url": "https://packagist.org/downloads/", 2880 | "license": [ 2881 | "MIT" 2882 | ], 2883 | "authors": [ 2884 | { 2885 | "name": "Jean-François Simon", 2886 | "email": "jeanfrancois.simon@sensiolabs.com" 2887 | }, 2888 | { 2889 | "name": "Fabien Potencier", 2890 | "email": "fabien@symfony.com" 2891 | }, 2892 | { 2893 | "name": "Symfony Community", 2894 | "homepage": "https://symfony.com/contributors" 2895 | } 2896 | ], 2897 | "description": "Symfony CssSelector Component", 2898 | "homepage": "https://symfony.com", 2899 | "time": "2016-01-27 05:14:46" 2900 | }, 2901 | { 2902 | "name": "symfony/dom-crawler", 2903 | "version": "v3.0.3", 2904 | "source": { 2905 | "type": "git", 2906 | "url": "https://github.com/symfony/dom-crawler.git", 2907 | "reference": "981c8edb4538f88ba976ed44bdcaa683fce3d6c6" 2908 | }, 2909 | "dist": { 2910 | "type": "zip", 2911 | "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/981c8edb4538f88ba976ed44bdcaa683fce3d6c6", 2912 | "reference": "981c8edb4538f88ba976ed44bdcaa683fce3d6c6", 2913 | "shasum": "" 2914 | }, 2915 | "require": { 2916 | "php": ">=5.5.9", 2917 | "symfony/polyfill-mbstring": "~1.0" 2918 | }, 2919 | "require-dev": { 2920 | "symfony/css-selector": "~2.8|~3.0" 2921 | }, 2922 | "suggest": { 2923 | "symfony/css-selector": "" 2924 | }, 2925 | "type": "library", 2926 | "extra": { 2927 | "branch-alias": { 2928 | "dev-master": "3.0-dev" 2929 | } 2930 | }, 2931 | "autoload": { 2932 | "psr-4": { 2933 | "Symfony\\Component\\DomCrawler\\": "" 2934 | }, 2935 | "exclude-from-classmap": [ 2936 | "/Tests/" 2937 | ] 2938 | }, 2939 | "notification-url": "https://packagist.org/downloads/", 2940 | "license": [ 2941 | "MIT" 2942 | ], 2943 | "authors": [ 2944 | { 2945 | "name": "Fabien Potencier", 2946 | "email": "fabien@symfony.com" 2947 | }, 2948 | { 2949 | "name": "Symfony Community", 2950 | "homepage": "https://symfony.com/contributors" 2951 | } 2952 | ], 2953 | "description": "Symfony DomCrawler Component", 2954 | "homepage": "https://symfony.com", 2955 | "time": "2016-02-28 16:24:34" 2956 | }, 2957 | { 2958 | "name": "symfony/yaml", 2959 | "version": "v3.0.3", 2960 | "source": { 2961 | "type": "git", 2962 | "url": "https://github.com/symfony/yaml.git", 2963 | "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c" 2964 | }, 2965 | "dist": { 2966 | "type": "zip", 2967 | "url": "https://api.github.com/repos/symfony/yaml/zipball/b5ba64cd67ecd6887f63868fa781ca094bd1377c", 2968 | "reference": "b5ba64cd67ecd6887f63868fa781ca094bd1377c", 2969 | "shasum": "" 2970 | }, 2971 | "require": { 2972 | "php": ">=5.5.9" 2973 | }, 2974 | "type": "library", 2975 | "extra": { 2976 | "branch-alias": { 2977 | "dev-master": "3.0-dev" 2978 | } 2979 | }, 2980 | "autoload": { 2981 | "psr-4": { 2982 | "Symfony\\Component\\Yaml\\": "" 2983 | }, 2984 | "exclude-from-classmap": [ 2985 | "/Tests/" 2986 | ] 2987 | }, 2988 | "notification-url": "https://packagist.org/downloads/", 2989 | "license": [ 2990 | "MIT" 2991 | ], 2992 | "authors": [ 2993 | { 2994 | "name": "Fabien Potencier", 2995 | "email": "fabien@symfony.com" 2996 | }, 2997 | { 2998 | "name": "Symfony Community", 2999 | "homepage": "https://symfony.com/contributors" 3000 | } 3001 | ], 3002 | "description": "Symfony Yaml Component", 3003 | "homepage": "https://symfony.com", 3004 | "time": "2016-02-23 15:16:06" 3005 | } 3006 | ], 3007 | "aliases": [], 3008 | "minimum-stability": "stable", 3009 | "stability-flags": [], 3010 | "prefer-stable": false, 3011 | "prefer-lowest": false, 3012 | "platform": { 3013 | "php": ">=5.5.9" 3014 | }, 3015 | "platform-dev": [] 3016 | } 3017 | -------------------------------------------------------------------------------- /config/app.php: -------------------------------------------------------------------------------- 1 | env('APP_ENV', 'production'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Application Debug Mode 21 | |-------------------------------------------------------------------------- 22 | | 23 | | When your application is in debug mode, detailed error messages with 24 | | stack traces will be shown on every error that occurs within your 25 | | application. If disabled, a simple generic error page is shown. 26 | | 27 | */ 28 | 29 | 'debug' => env('APP_DEBUG', false), 30 | 31 | /* 32 | |-------------------------------------------------------------------------- 33 | | Application URL 34 | |-------------------------------------------------------------------------- 35 | | 36 | | This URL is used by the console to properly generate URLs when using 37 | | the Artisan command line tool. You should set this to the root of 38 | | your application so that it is used when running Artisan tasks. 39 | | 40 | */ 41 | 42 | 'url' => env('APP_URL', 'http://localhost'), 43 | 44 | /* 45 | |-------------------------------------------------------------------------- 46 | | Application Timezone 47 | |-------------------------------------------------------------------------- 48 | | 49 | | Here you may specify the default timezone for your application, which 50 | | will be used by the PHP date and date-time functions. We have gone 51 | | ahead and set this to a sensible default for you out of the box. 52 | | 53 | */ 54 | 55 | 'timezone' => 'UTC', 56 | 57 | /* 58 | |-------------------------------------------------------------------------- 59 | | Application Locale Configuration 60 | |-------------------------------------------------------------------------- 61 | | 62 | | The application locale determines the default locale that will be used 63 | | by the translation service provider. You are free to set this value 64 | | to any of the locales which will be supported by the application. 65 | | 66 | */ 67 | 68 | 'locale' => 'en', 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Application Fallback Locale 73 | |-------------------------------------------------------------------------- 74 | | 75 | | The fallback locale determines the locale to use when the current one 76 | | is not available. You may change the value to correspond to any of 77 | | the language folders that are provided through your application. 78 | | 79 | */ 80 | 81 | 'fallback_locale' => 'en', 82 | 83 | /* 84 | |-------------------------------------------------------------------------- 85 | | Encryption Key 86 | |-------------------------------------------------------------------------- 87 | | 88 | | This key is used by the Illuminate encrypter service and should be set 89 | | to a random, 32 character string, otherwise these encrypted strings 90 | | will not be safe. Please do this before deploying an application! 91 | | 92 | */ 93 | 94 | 'key' => env('APP_KEY'), 95 | 96 | 'cipher' => 'AES-256-CBC', 97 | 98 | /* 99 | |-------------------------------------------------------------------------- 100 | | Logging Configuration 101 | |-------------------------------------------------------------------------- 102 | | 103 | | Here you may configure the log settings for your application. Out of 104 | | the box, Laravel uses the Monolog PHP logging library. This gives 105 | | you a variety of powerful log handlers / formatters to utilize. 106 | | 107 | | Available Settings: "single", "daily", "syslog", "errorlog" 108 | | 109 | */ 110 | 111 | 'log' => env('APP_LOG', 'single'), 112 | 113 | /* 114 | |-------------------------------------------------------------------------- 115 | | Autoloaded Service Providers 116 | |-------------------------------------------------------------------------- 117 | | 118 | | The service providers listed here will be automatically loaded on the 119 | | request to your application. Feel free to add your own services to 120 | | this array to grant expanded functionality to your applications. 121 | | 122 | */ 123 | 124 | 'providers' => [ 125 | 126 | /* 127 | * Laravel Framework Service Providers... 128 | */ 129 | Illuminate\Auth\AuthServiceProvider::class, 130 | Illuminate\Broadcasting\BroadcastServiceProvider::class, 131 | Illuminate\Bus\BusServiceProvider::class, 132 | Illuminate\Cache\CacheServiceProvider::class, 133 | Illuminate\Foundation\Providers\ConsoleSupportServiceProvider::class, 134 | Illuminate\Cookie\CookieServiceProvider::class, 135 | Illuminate\Database\DatabaseServiceProvider::class, 136 | Illuminate\Encryption\EncryptionServiceProvider::class, 137 | Illuminate\Filesystem\FilesystemServiceProvider::class, 138 | Illuminate\Foundation\Providers\FoundationServiceProvider::class, 139 | Illuminate\Hashing\HashServiceProvider::class, 140 | Illuminate\Mail\MailServiceProvider::class, 141 | Illuminate\Pagination\PaginationServiceProvider::class, 142 | Illuminate\Pipeline\PipelineServiceProvider::class, 143 | Illuminate\Queue\QueueServiceProvider::class, 144 | Illuminate\Redis\RedisServiceProvider::class, 145 | Illuminate\Auth\Passwords\PasswordResetServiceProvider::class, 146 | Illuminate\Session\SessionServiceProvider::class, 147 | Illuminate\Translation\TranslationServiceProvider::class, 148 | Illuminate\Validation\ValidationServiceProvider::class, 149 | Illuminate\View\ViewServiceProvider::class, 150 | 151 | /* 152 | * Application Service Providers... 153 | */ 154 | App\Providers\AppServiceProvider::class, 155 | App\Providers\AuthServiceProvider::class, 156 | App\Providers\EventServiceProvider::class, 157 | App\Providers\RouteServiceProvider::class, 158 | 159 | ], 160 | 161 | /* 162 | |-------------------------------------------------------------------------- 163 | | Class Aliases 164 | |-------------------------------------------------------------------------- 165 | | 166 | | This array of class aliases will be registered when this application 167 | | is started. However, feel free to register as many as you wish as 168 | | the aliases are "lazy" loaded so they don't hinder performance. 169 | | 170 | */ 171 | 172 | 'aliases' => [ 173 | 174 | 'App' => Illuminate\Support\Facades\App::class, 175 | 'Artisan' => Illuminate\Support\Facades\Artisan::class, 176 | 'Auth' => Illuminate\Support\Facades\Auth::class, 177 | 'Blade' => Illuminate\Support\Facades\Blade::class, 178 | 'Cache' => Illuminate\Support\Facades\Cache::class, 179 | 'Config' => Illuminate\Support\Facades\Config::class, 180 | 'Cookie' => Illuminate\Support\Facades\Cookie::class, 181 | 'Crypt' => Illuminate\Support\Facades\Crypt::class, 182 | 'DB' => Illuminate\Support\Facades\DB::class, 183 | 'Eloquent' => Illuminate\Database\Eloquent\Model::class, 184 | 'Event' => Illuminate\Support\Facades\Event::class, 185 | 'File' => Illuminate\Support\Facades\File::class, 186 | 'Gate' => Illuminate\Support\Facades\Gate::class, 187 | 'Hash' => Illuminate\Support\Facades\Hash::class, 188 | 'Lang' => Illuminate\Support\Facades\Lang::class, 189 | 'Log' => Illuminate\Support\Facades\Log::class, 190 | 'Mail' => Illuminate\Support\Facades\Mail::class, 191 | 'Password' => Illuminate\Support\Facades\Password::class, 192 | 'Queue' => Illuminate\Support\Facades\Queue::class, 193 | 'Redirect' => Illuminate\Support\Facades\Redirect::class, 194 | 'Redis' => Illuminate\Support\Facades\Redis::class, 195 | 'Request' => Illuminate\Support\Facades\Request::class, 196 | 'Response' => Illuminate\Support\Facades\Response::class, 197 | 'Route' => Illuminate\Support\Facades\Route::class, 198 | 'Schema' => Illuminate\Support\Facades\Schema::class, 199 | 'Session' => Illuminate\Support\Facades\Session::class, 200 | 'Storage' => Illuminate\Support\Facades\Storage::class, 201 | 'URL' => Illuminate\Support\Facades\URL::class, 202 | 'Validator' => Illuminate\Support\Facades\Validator::class, 203 | 'View' => Illuminate\Support\Facades\View::class, 204 | 205 | ], 206 | 207 | ]; 208 | -------------------------------------------------------------------------------- /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 | | Here you may set the options for resetting passwords including the view 85 | | that is your password reset e-mail. You may also set the name of the 86 | | table that maintains all of the reset tokens for your application. 87 | | 88 | | You may specify multiple password reset configurations if you have more 89 | | than one user table or model in the application and you want to have 90 | | separate password reset settings based on the specific user types. 91 | | 92 | | The expire time is the number of minutes that the reset token should be 93 | | considered valid. This security feature keeps tokens short-lived so 94 | | they have less time to be guessed. You may change this as needed. 95 | | 96 | */ 97 | 98 | 'passwords' => [ 99 | 'users' => [ 100 | 'provider' => 'users', 101 | 'email' => 'auth.emails.password', 102 | 'table' => 'password_resets', 103 | 'expire' => 60, 104 | ], 105 | ], 106 | 107 | ]; 108 | -------------------------------------------------------------------------------- /config/broadcasting.php: -------------------------------------------------------------------------------- 1 | env('BROADCAST_DRIVER', 'pusher'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Broadcast Connections 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may define all of the broadcast connections that will be used 24 | | to broadcast events to other systems or over websockets. Samples of 25 | | each available type of connection are provided inside this array. 26 | | 27 | */ 28 | 29 | 'connections' => [ 30 | 31 | 'pusher' => [ 32 | 'driver' => 'pusher', 33 | 'key' => env('PUSHER_KEY'), 34 | 'secret' => env('PUSHER_SECRET'), 35 | 'app_id' => env('PUSHER_APP_ID'), 36 | 'options' => [ 37 | // 38 | ], 39 | ], 40 | 41 | 'redis' => [ 42 | 'driver' => 'redis', 43 | 'connection' => 'default', 44 | ], 45 | 46 | 'log' => [ 47 | 'driver' => 'log', 48 | ], 49 | 50 | ], 51 | 52 | ]; 53 | -------------------------------------------------------------------------------- /config/cache.php: -------------------------------------------------------------------------------- 1 | env('CACHE_DRIVER', 'file'), 17 | 18 | /* 19 | |-------------------------------------------------------------------------- 20 | | Cache Stores 21 | |-------------------------------------------------------------------------- 22 | | 23 | | Here you may define all of the cache "stores" for your application as 24 | | well as their drivers. You may even define multiple stores for the 25 | | same cache driver to group types of items stored in your caches. 26 | | 27 | */ 28 | 29 | 'stores' => [ 30 | 31 | 'apc' => [ 32 | 'driver' => 'apc', 33 | ], 34 | 35 | 'array' => [ 36 | 'driver' => 'array', 37 | ], 38 | 39 | 'database' => [ 40 | 'driver' => 'database', 41 | 'table' => 'cache', 42 | 'connection' => null, 43 | ], 44 | 45 | 'file' => [ 46 | 'driver' => 'file', 47 | 'path' => storage_path('framework/cache'), 48 | ], 49 | 50 | 'memcached' => [ 51 | 'driver' => 'memcached', 52 | 'servers' => [ 53 | [ 54 | 'host' => env('MEMCACHED_HOST', '127.0.0.1'), 55 | 'port' => env('MEMCACHED_PORT', 11211), 56 | 'weight' => 100, 57 | ], 58 | ], 59 | ], 60 | 61 | 'redis' => [ 62 | 'driver' => 'redis', 63 | 'connection' => 'default', 64 | ], 65 | 66 | ], 67 | 68 | /* 69 | |-------------------------------------------------------------------------- 70 | | Cache Key Prefix 71 | |-------------------------------------------------------------------------- 72 | | 73 | | When utilizing a RAM based store such as APC or Memcached, there might 74 | | be other applications utilizing the same cache. So, we'll specify a 75 | | value to get prefixed to all our keys so we can avoid collisions. 76 | | 77 | */ 78 | 79 | 'prefix' => 'laravel', 80 | 81 | ]; 82 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /config/database.php: -------------------------------------------------------------------------------- 1 | PDO::FETCH_CLASS, 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', 'mysql'), 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' => env('DB_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' => false, 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 | ], 80 | 81 | ], 82 | 83 | /* 84 | |-------------------------------------------------------------------------- 85 | | Migration Repository Table 86 | |-------------------------------------------------------------------------- 87 | | 88 | | This table keeps track of all the migrations that have already run for 89 | | your application. Using this information, we can determine which of 90 | | the migrations on disk haven't actually been run in the database. 91 | | 92 | */ 93 | 94 | 'migrations' => 'migrations', 95 | 96 | /* 97 | |-------------------------------------------------------------------------- 98 | | Redis Databases 99 | |-------------------------------------------------------------------------- 100 | | 101 | | Redis is an open source, fast, and advanced key-value store that also 102 | | provides a richer set of commands than a typical key-value systems 103 | | such as APC or Memcached. Laravel makes it easy to dig right in. 104 | | 105 | */ 106 | 107 | 'redis' => [ 108 | 109 | 'cluster' => false, 110 | 111 | 'default' => [ 112 | 'host' => env('REDIS_HOST', 'localhost'), 113 | 'password' => env('REDIS_PASSWORD', null), 114 | 'port' => env('REDIS_PORT', 6379), 115 | 'database' => 0, 116 | ], 117 | 118 | ], 119 | 120 | ]; 121 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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' => ['address' => null, 'name' => null], 59 | 60 | /* 61 | |-------------------------------------------------------------------------- 62 | | E-Mail Encryption Protocol 63 | |-------------------------------------------------------------------------- 64 | | 65 | | Here you may specify the encryption protocol that should be used when 66 | | the application send e-mail messages. A sensible default using the 67 | | transport layer security protocol should provide great security. 68 | | 69 | */ 70 | 71 | 'encryption' => env('MAIL_ENCRYPTION', 'tls'), 72 | 73 | /* 74 | |-------------------------------------------------------------------------- 75 | | SMTP Server Username 76 | |-------------------------------------------------------------------------- 77 | | 78 | | If your SMTP server requires a username for authentication, you should 79 | | set it here. This will get used to authenticate with your server on 80 | | connection. You may also set the "password" value below this one. 81 | | 82 | */ 83 | 84 | 'username' => env('MAIL_USERNAME'), 85 | 86 | /* 87 | |-------------------------------------------------------------------------- 88 | | SMTP Server Password 89 | |-------------------------------------------------------------------------- 90 | | 91 | | Here you may set the password required by your SMTP server to send out 92 | | messages from your application. This will be given to the server on 93 | | connection so that the application will be able to send messages. 94 | | 95 | */ 96 | 97 | 'password' => env('MAIL_PASSWORD'), 98 | 99 | /* 100 | |-------------------------------------------------------------------------- 101 | | Sendmail System Path 102 | |-------------------------------------------------------------------------- 103 | | 104 | | When using the "sendmail" driver to send e-mails, we will need to know 105 | | the path to where Sendmail lives on this server. A default path has 106 | | been provided here, which will work well on most of your systems. 107 | | 108 | */ 109 | 110 | 'sendmail' => '/usr/sbin/sendmail -bs', 111 | 112 | ]; 113 | -------------------------------------------------------------------------------- /config/queue.php: -------------------------------------------------------------------------------- 1 | env('QUEUE_DRIVER', 'sync'), 20 | 21 | /* 22 | |-------------------------------------------------------------------------- 23 | | Queue Connections 24 | |-------------------------------------------------------------------------- 25 | | 26 | | Here you may configure the connection information for each server that 27 | | is used by your application. A default configuration has been added 28 | | for each back-end shipped with Laravel. You are free to add more. 29 | | 30 | */ 31 | 32 | 'connections' => [ 33 | 34 | 'sync' => [ 35 | 'driver' => 'sync', 36 | ], 37 | 38 | 'database' => [ 39 | 'driver' => 'database', 40 | 'table' => 'jobs', 41 | 'queue' => 'default', 42 | 'expire' => 60, 43 | ], 44 | 45 | 'beanstalkd' => [ 46 | 'driver' => 'beanstalkd', 47 | 'host' => 'localhost', 48 | 'queue' => 'default', 49 | 'ttr' => 60, 50 | ], 51 | 52 | 'sqs' => [ 53 | 'driver' => 'sqs', 54 | 'key' => 'your-public-key', 55 | 'secret' => 'your-secret-key', 56 | 'prefix' => 'https://sqs.us-east-1.amazonaws.com/your-account-id', 57 | 'queue' => 'your-queue-name', 58 | 'region' => 'us-east-1', 59 | ], 60 | 61 | 'redis' => [ 62 | 'driver' => 'redis', 63 | 'connection' => 'default', 64 | 'queue' => 'default', 65 | 'expire' => 60, 66 | ], 67 | 68 | ], 69 | 70 | /* 71 | |-------------------------------------------------------------------------- 72 | | Failed Queue Jobs 73 | |-------------------------------------------------------------------------- 74 | | 75 | | These options configure the behavior of failed queue job logging so you 76 | | can control which database and table are used to store the jobs that 77 | | have failed. You may change them to any database / table you wish. 78 | | 79 | */ 80 | 81 | 'failed' => [ 82 | 'database' => env('DB_CONNECTION', 'mysql'), 83 | 'table' => 'failed_jobs', 84 | ], 85 | 86 | ]; 87 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 Sweeping Lottery 91 | |-------------------------------------------------------------------------- 92 | | 93 | | Some session drivers must manually sweep their storage location to get 94 | | rid of old sessions from storage. Here are the chances that it will 95 | | happen on a given request. By default, the odds are 2 out of 100. 96 | | 97 | */ 98 | 99 | 'lottery' => [2, 100], 100 | 101 | /* 102 | |-------------------------------------------------------------------------- 103 | | Session Cookie Name 104 | |-------------------------------------------------------------------------- 105 | | 106 | | Here you may change the name of the cookie used to identify a session 107 | | instance by ID. The name specified here will get used every time a 108 | | new session cookie is created by the framework for every driver. 109 | | 110 | */ 111 | 112 | 'cookie' => 'laravel_session', 113 | 114 | /* 115 | |-------------------------------------------------------------------------- 116 | | Session Cookie Path 117 | |-------------------------------------------------------------------------- 118 | | 119 | | The session cookie path determines the path for which the cookie will 120 | | be regarded as available. Typically, this will be the root path of 121 | | your application but you are free to change this when necessary. 122 | | 123 | */ 124 | 125 | 'path' => '/', 126 | 127 | /* 128 | |-------------------------------------------------------------------------- 129 | | Session Cookie Domain 130 | |-------------------------------------------------------------------------- 131 | | 132 | | Here you may change the domain of the cookie used to identify a session 133 | | in your application. This will determine which domains the cookie is 134 | | available to in your application. A sensible default has been set. 135 | | 136 | */ 137 | 138 | 'domain' => null, 139 | 140 | /* 141 | |-------------------------------------------------------------------------- 142 | | HTTPS Only Cookies 143 | |-------------------------------------------------------------------------- 144 | | 145 | | By setting this option to true, session cookies will only be sent back 146 | | to the server if the browser has a HTTPS connection. This will keep 147 | | the cookie from being sent to you if it can not be done securely. 148 | | 149 | */ 150 | 151 | 'secure' => false, 152 | 153 | /* 154 | |-------------------------------------------------------------------------- 155 | | HTTP Access Only 156 | |-------------------------------------------------------------------------- 157 | | 158 | | Setting this value to true will prevent JavaScript from accessing the 159 | | value of the cookie and the cookie will only be accessible through 160 | | the HTTP protocol. You are free to modify this option if needed. 161 | | 162 | */ 163 | 164 | 'http_only' => true, 165 | 166 | ]; 167 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /database/.gitignore: -------------------------------------------------------------------------------- 1 | *.sqlite 2 | -------------------------------------------------------------------------------- /database/factories/ModelFactory.php: -------------------------------------------------------------------------------- 1 | define(App\User::class, function (Faker\Generator $faker) { 15 | return [ 16 | 'name' => $faker->name, 17 | 'email' => $faker->safeEmail, 18 | 'password' => bcrypt(str_random(10)), 19 | 'remember_token' => str_random(10), 20 | ]; 21 | }); 22 | -------------------------------------------------------------------------------- /database/migrations/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/migrations/2014_10_12_000000_create_users_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 17 | $table->string('first_name'); 18 | $table->string('last_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 | -------------------------------------------------------------------------------- /database/migrations/2016_03_31_065856_create_roles_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 17 | $table->timestamps(); 18 | $table->string('name'); 19 | $table->string('description'); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::drop('roles'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/migrations/2016_03_31_070114_create_user_role_table.php: -------------------------------------------------------------------------------- 1 | increments('id'); 17 | $table->timestamps(); 18 | $table->integer('user_id'); 19 | $table->integer('role_id'); 20 | }); 21 | } 22 | 23 | /** 24 | * Reverse the migrations. 25 | * 26 | * @return void 27 | */ 28 | public function down() 29 | { 30 | Schema::drop('user_role'); 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /database/seeds/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/seeds/DatabaseSeeder.php: -------------------------------------------------------------------------------- 1 | call(RoleTableSeeder::class); 15 | $this->call(UserTableSeeder::class); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /database/seeds/RoleTableSeeder.php: -------------------------------------------------------------------------------- 1 | name = 'User'; 17 | $role_user->description = 'A normal User'; 18 | $role_user->save(); 19 | 20 | $role_author = new Role(); 21 | $role_author->name = 'Author'; 22 | $role_author->description = 'An Author'; 23 | $role_author->save(); 24 | 25 | $role_admin = new Role(); 26 | $role_admin->name = 'Admin'; 27 | $role_admin->description = 'A Admin'; 28 | $role_admin->save(); 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /database/seeds/UserTableSeeder.php: -------------------------------------------------------------------------------- 1 | first(); 17 | $role_author = Role::where('name', 'Author')->first(); 18 | $role_admin = Role::where('name', 'Admin')->first(); 19 | 20 | $user = new User(); 21 | $user->first_name = 'Victor'; 22 | $user->last_name = 'Visitor'; 23 | $user->email = 'visitor@example.com'; 24 | $user->password = bcrypt('visitor'); 25 | $user->save(); 26 | $user->roles()->attach($role_user); 27 | 28 | $admin = new User(); 29 | $admin->first_name = 'Alex'; 30 | $admin->last_name = 'Admin'; 31 | $admin->email = 'admin@example.com'; 32 | $admin->password = bcrypt('admin'); 33 | $admin->save(); 34 | $admin->roles()->attach($role_admin); 35 | 36 | $author = new User(); 37 | $author->first_name = 'Andy'; 38 | $author->last_name = 'Author'; 39 | $author->email = 'author@example.com'; 40 | $author->password = bcrypt('author'); 41 | $author->save(); 42 | $author->roles()->attach($role_author); 43 | } 44 | } 45 | -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- 1 | var elixir = require('laravel-elixir'); 2 | 3 | /* 4 | |-------------------------------------------------------------------------- 5 | | Elixir Asset Management 6 | |-------------------------------------------------------------------------- 7 | | 8 | | Elixir provides a clean, fluent API for defining some basic Gulp tasks 9 | | for your Laravel application. By default, we are compiling the Sass 10 | | file for our application, as well as publishing vendor resources. 11 | | 12 | */ 13 | 14 | elixir(function(mix) { 15 | mix.sass('app.scss'); 16 | }); 17 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "private": true, 3 | "devDependencies": { 4 | "gulp": "^3.8.8" 5 | }, 6 | "dependencies": { 7 | "laravel-elixir": "^4.0.0", 8 | "bootstrap-sass": "^3.0.0" 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- 1 | 2 | 11 | 12 | 13 | ./tests/ 14 | 15 | 16 | 17 | 18 | app/ 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschwarzmueller/laravel-playground/1d97d516d98c315b2d245442480b9ee7d8434105/public/favicon.ico -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /public/src/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; 3 | font-size: 16px; 4 | padding: 0; 5 | margin: 0; 6 | } 7 | 8 | header { 9 | padding: 20px 10%; 10 | background-color: #2ecc71; 11 | color: #34495e; 12 | } 13 | 14 | header ul { 15 | margin: 0; 16 | padding: 0; 17 | list-style: none; 18 | } 19 | 20 | header ul li { 21 | display: inline-block; 22 | margin: 0 10px; 23 | } 24 | 25 | header ul li:first-of-type { 26 | margin-left: 0; 27 | } 28 | 29 | header ul li:last-of-type { 30 | margin-right: 0; 31 | } 32 | 33 | header a { 34 | display: block; 35 | color: #34495e; 36 | text-decoration: none; 37 | padding: 0 0 3px 0; 38 | border-bottom: 1px solid transparent; 39 | } 40 | 41 | header a:hover, 42 | header a:active { 43 | border-bottom: 1px solid #34495e; 44 | } 45 | 46 | header a.active { 47 | border-bottom: 1px solid #34495e; 48 | } 49 | 50 | #separator { 51 | display: inline-block; 52 | border-left: 3px solid #34495e; 53 | height: 30px; 54 | vertical-align: middle; 55 | } 56 | 57 | .main { 58 | margin: 20px 10%; 59 | } 60 | 61 | form .input-group { 62 | display: block; 63 | margin: 10px 0; 64 | } 65 | 66 | form label { 67 | display: block; 68 | } 69 | 70 | form input, 71 | form button { 72 | font: inherit; 73 | } 74 | 75 | form button { 76 | margin: 10px 0; 77 | padding: 4px 8px; 78 | border: 1px solid #2980b9; 79 | border-radius: 3px; 80 | background-color: #3498db; 81 | color: #ecf0f1; 82 | cursor: pointer; 83 | } 84 | 85 | form button:hover { 86 | background-color: #2980b9; 87 | } -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Laravel Playground 2 | 3 | This respository holds the code of a YouTube Tutorial Series on Laravel. This series covers various topics. 4 | 5 | Just pick your branch to browse the code of a specific video. 6 | 7 | YouTube Series: https://www.youtube.com/playlist?list=PL55RiY5tL51r_qJPESCy5ScfwTo2klnlW -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | 3 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /resources/lang/en/pagination.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | 'distinct' => 'The :attribute field has a duplicate value.', 38 | 'email' => 'The :attribute must be a valid email address.', 39 | 'exists' => 'The selected :attribute is invalid.', 40 | 'filled' => 'The :attribute field is required.', 41 | 'image' => 'The :attribute must be an image.', 42 | 'in' => 'The selected :attribute is invalid.', 43 | 'in_array' => 'The :attribute field does not exist in :other.', 44 | 'integer' => 'The :attribute must be an integer.', 45 | 'ip' => 'The :attribute must be a valid IP address.', 46 | 'json' => 'The :attribute must be a valid JSON string.', 47 | 'max' => [ 48 | 'numeric' => 'The :attribute may not be greater than :max.', 49 | 'file' => 'The :attribute may not be greater than :max kilobytes.', 50 | 'string' => 'The :attribute may not be greater than :max characters.', 51 | 'array' => 'The :attribute may not have more than :max items.', 52 | ], 53 | 'mimes' => 'The :attribute must be a file of type: :values.', 54 | 'min' => [ 55 | 'numeric' => 'The :attribute must be at least :min.', 56 | 'file' => 'The :attribute must be at least :min kilobytes.', 57 | 'string' => 'The :attribute must be at least :min characters.', 58 | 'array' => 'The :attribute must have at least :min items.', 59 | ], 60 | 'not_in' => 'The selected :attribute is invalid.', 61 | 'numeric' => 'The :attribute must be a number.', 62 | 'present' => 'The :attribute field must be present.', 63 | 'regex' => 'The :attribute format is invalid.', 64 | 'required' => 'The :attribute field is required.', 65 | 'required_if' => 'The :attribute field is required when :other is :value.', 66 | 'required_unless' => 'The :attribute field is required unless :other is in :values.', 67 | 'required_with' => 'The :attribute field is required when :values is present.', 68 | 'required_with_all' => 'The :attribute field is required when :values is present.', 69 | 'required_without' => 'The :attribute field is required when :values is not present.', 70 | 'required_without_all' => 'The :attribute field is required when none of :values are present.', 71 | 'same' => 'The :attribute and :other must match.', 72 | 'size' => [ 73 | 'numeric' => 'The :attribute must be :size.', 74 | 'file' => 'The :attribute must be :size kilobytes.', 75 | 'string' => 'The :attribute must be :size characters.', 76 | 'array' => 'The :attribute must contain :size items.', 77 | ], 78 | 'string' => 'The :attribute must be a string.', 79 | 'timezone' => 'The :attribute must be a valid zone.', 80 | 'unique' => 'The :attribute has already been taken.', 81 | 'url' => 'The :attribute format is invalid.', 82 | 83 | /* 84 | |-------------------------------------------------------------------------- 85 | | Custom Validation Language Lines 86 | |-------------------------------------------------------------------------- 87 | | 88 | | Here you may specify custom validation messages for attributes using the 89 | | convention "attribute.rule" to name the lines. This makes it quick to 90 | | specify a specific custom language line for a given attribute rule. 91 | | 92 | */ 93 | 94 | 'custom' => [ 95 | 'attribute-name' => [ 96 | 'rule-name' => 'custom-message', 97 | ], 98 | ], 99 | 100 | /* 101 | |-------------------------------------------------------------------------- 102 | | Custom Validation Attributes 103 | |-------------------------------------------------------------------------- 104 | | 105 | | The following language lines are used to swap attribute place-holders 106 | | with something more reader friendly such as E-Mail Address instead 107 | | of "email". This simply helps us make messages a little cleaner. 108 | | 109 | */ 110 | 111 | 'attributes' => [], 112 | 113 | ]; 114 | -------------------------------------------------------------------------------- /resources/views/admin.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.master') 2 | 3 | @section('content') 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | @foreach($users as $user) 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | {{ csrf_field() }} 25 | 26 | 27 | 28 | @endforeach 29 | 30 |
First NameLast NameE-MailUserAuthorAdmin
{{ $user->first_name }}{{ $user->last_name }}{{ $user->email }} hasRole('User') ? 'checked' : '' }} name="role_user">hasRole('Author') ? 'checked' : '' }} name="role_author">hasRole('Admin') ? 'checked' : '' }} name="role_admin">
31 | @endsection -------------------------------------------------------------------------------- /resources/views/auth/signin.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.master') 2 | 3 | @section('content') 4 |
5 |
6 | 7 | 8 |
9 |
10 | 11 | 12 |
13 | {{ csrf_field() }} 14 | 15 |
16 | @endsection -------------------------------------------------------------------------------- /resources/views/auth/signup.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.master') 2 | 3 | @section('content') 4 |
5 |
6 | 7 | 8 |
9 |
10 | 11 | 12 |
13 |
14 | 15 | 16 |
17 |
18 | 19 | 20 |
21 | {{ csrf_field() }} 22 | 23 |
24 | @endsection -------------------------------------------------------------------------------- /resources/views/author.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.master') 2 | 3 | @section('content') 4 |

New Article

5 | Generate! 6 | @endsection -------------------------------------------------------------------------------- /resources/views/errors/503.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Be right back. 5 | 6 | 7 | 8 | 39 | 40 | 41 |
42 |
43 |
Be right back.
44 |
45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /resources/views/index.blade.php: -------------------------------------------------------------------------------- 1 | @extends('layouts.master') 2 | 3 | @section('content') 4 |

Everyone may visit this page!

5 | @endsection -------------------------------------------------------------------------------- /resources/views/layouts/master.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Laravel ACL 6 | 7 | 8 | 9 | @include('partials.header') 10 |
11 | @yield('content') 12 |
13 | 14 | -------------------------------------------------------------------------------- /resources/views/partials/header.blade.php: -------------------------------------------------------------------------------- 1 |
2 | 16 |
-------------------------------------------------------------------------------- /resources/views/vendor/.gitkeep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /server.php: -------------------------------------------------------------------------------- 1 | 8 | */ 9 | 10 | $uri = urldecode( 11 | parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH) 12 | ); 13 | 14 | // This file allows us to emulate Apache's "mod_rewrite" functionality from the 15 | // built-in PHP web server. This provides a convenient way to test a Laravel 16 | // application without having installed a "real" web server software here. 17 | if ($uri !== '/' && file_exists(__DIR__.'/public'.$uri)) { 18 | return false; 19 | } 20 | 21 | require_once __DIR__.'/public/index.php'; 22 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !public/ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /storage/app/public/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | schedule-* 4 | compiled.php 5 | services.json 6 | events.scanned.php 7 | routes.scanned.php 8 | down 9 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/sessions/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/framework/views/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | visit('/') 17 | ->see('Laravel 5'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- 1 | make(Illuminate\Contracts\Console\Kernel::class)->bootstrap(); 22 | 23 | return $app; 24 | } 25 | } 26 | --------------------------------------------------------------------------------