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