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

Event fired

14 |

0

15 | 16 | 17 | 18 | 25 | 26 | -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- 1 | //require modules 2 | var express = require('express'); 3 | var app = express(); 4 | var http = require('http').Server(app); 5 | var socket = require('socket.io')(http); 6 | var Redis = require('ioredis'); 7 | var redis = new Redis(); 8 | 9 | //configuration 10 | var port = process.env.PORT || 3000; 11 | 12 | //subscribe to test-channel on redis 13 | redis.subscribe('test-channel', function(error, count){}); 14 | 15 | //message event listener 16 | redis.on('message', function(channel, message){ 17 | console.log('Message received: ' + message); 18 | message = JSON.parse(message); 19 | socket.emit(channel + ':' + message.event, message.data); 20 | }); 21 | 22 | //server listener 23 | http.listen(port, function(){ 24 | console.log('Server running on port: ' + port); 25 | }); -------------------------------------------------------------------------------- /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 | !.gitignore -------------------------------------------------------------------------------- /storage/framework/.gitignore: -------------------------------------------------------------------------------- 1 | config.php 2 | routes.php 3 | compiled.php 4 | services.json 5 | events.scanned.php 6 | routes.scanned.php 7 | down 8 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /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 | --------------------------------------------------------------------------------