├── public ├── favicon.ico ├── robots.txt ├── .htaccess ├── web.config ├── index.php └── css │ └── style.css ├── 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 │ │ └── DonateController.php │ ├── routes.php │ └── Kernel.php ├── Providers │ ├── AppServiceProvider.php │ ├── AuthServiceProvider.php │ ├── EventServiceProvider.php │ └── RouteServiceProvider.php ├── User.php ├── Jobs │ └── Job.php ├── Console │ ├── Commands │ │ └── Inspire.php │ └── Kernel.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 │ ├── success.blade.php │ ├── welcome.blade.php │ ├── errors │ │ └── 503.blade.php │ └── donate.blade.php ├── assets │ └── sass │ │ └── app.scss └── lang │ └── en │ ├── pagination.php │ ├── auth.php │ ├── passwords.php │ └── validation.php ├── storage ├── app │ └── .gitignore ├── logs │ └── .gitignore └── framework │ ├── cache │ └── .gitignore │ ├── views │ └── .gitignore │ ├── sessions │ └── .gitignore │ └── .gitignore ├── bootstrap ├── cache │ └── .gitignore ├── autoload.php └── app.php ├── .gitattributes ├── example-image.png ├── .gitignore ├── package.json ├── readme.md ├── .env.example ├── tests ├── ExampleTest.php └── TestCase.php ├── gulpfile.js ├── server.php ├── phpunit.xml ├── config ├── compile.php ├── services.php ├── view.php ├── broadcasting.php ├── cache.php ├── queue.php ├── filesystems.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 | -------------------------------------------------------------------------------- /storage/app/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /bootstrap/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /storage/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | User-agent: * 2 | Disallow: 3 | -------------------------------------------------------------------------------- /storage/framework/cache/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /example-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravelnews/donate/HEAD/example-image.png -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | /node_modules 3 | Homestead.yaml 4 | Homestead.json 5 | .env 6 | .idea -------------------------------------------------------------------------------- /app/Events/Event.php: -------------------------------------------------------------------------------- 1 | call(UserTableSeeder::class); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /resources/assets/sass/app.scss: -------------------------------------------------------------------------------- 1 | // @import "node_modules/bootstrap-sass/assets/stylesheets/bootstrap"; 2 | * { 3 | padding: 0; 4 | margin: 0; 5 | -webkit-font-smoothing: antialiased; 6 | } 7 | body { 8 | background: rgba(0,0,0,0.6); 9 | } 10 | .container { 11 | max-with: 400px; 12 | margin: 0 auto; 13 | } 14 | .content { 15 | 16 | } -------------------------------------------------------------------------------- /app/Http/Middleware/EncryptCookies.php: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /tests/ExampleTest.php: -------------------------------------------------------------------------------- 1 | visit('/') 17 | ->see('Laravel 5'); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /app/Providers/AppServiceProvider.php: -------------------------------------------------------------------------------- 1 | '« Previous', 17 | 'next' => 'Next »', 18 | 19 | ]; 20 | -------------------------------------------------------------------------------- /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/views/success.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Laravel 5 | 6 | 7 | 8 | 9 |
10 |
11 |
12 | 13 |
14 |

Thank You!

15 | 16 |

Your payment has been submitted. Thank you.

17 |
18 |
19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /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/Http/Middleware/Authenticate.php: -------------------------------------------------------------------------------- 1 | guest()) { 21 | if ($request->ajax()) { 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 | increments('id'); 17 | $table->string('name'); 18 | $table->string('email')->unique(); 19 | $table->string('password', 60); 20 | $table->rememberToken(); 21 | $table->timestamps(); 22 | }); 23 | } 24 | 25 | /** 26 | * Reverse the migrations. 27 | * 28 | * @return void 29 | */ 30 | public function down() 31 | { 32 | Schema::drop('users'); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/Http/routes.php: -------------------------------------------------------------------------------- 1 | ['web']], function () { 30 | Route::get('donate', 'DonateController@index'); 31 | Route::post('donate', 'DonateController@submit'); 32 | }); 33 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /app/Http/Controllers/DonateController.php: -------------------------------------------------------------------------------- 1 | $request->amount * 100, 18 | 'description' => $request->description 19 | ]); 20 | } 21 | 22 | public function submit(Request $request) 23 | { 24 | try { 25 | $this->doPayment($request->stripeToken, $request->stripeEmail, $request->amount); 26 | } catch (\Exception $e) { 27 | return $e->getMessage(); 28 | } 29 | 30 | return view('success'); 31 | } 32 | 33 | protected function doPayment($token, $email, $amount) 34 | { 35 | Stripe::setApiKey(config('services.stripe.secret')); 36 | 37 | $customer = Customer::create(array( 38 | 'email' => $email, 39 | 'card' => $token 40 | )); 41 | 42 | $charge = Charge::create(array( 43 | 'customer' => $customer->id, 44 | 'amount' => $amount, 45 | 'currency' => 'usd' 46 | )); 47 | 48 | } 49 | } -------------------------------------------------------------------------------- /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 | "stripe/stripe-php": "^3.5" 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 | }, 19 | "autoload": { 20 | "classmap": [ 21 | "database" 22 | ], 23 | "psr-4": { 24 | "App\\": "app/" 25 | } 26 | }, 27 | "autoload-dev": { 28 | "classmap": [ 29 | "tests/TestCase.php" 30 | ] 31 | }, 32 | "scripts": { 33 | "post-root-package-install": [ 34 | "php -r \"copy('.env.example', '.env');\"" 35 | ], 36 | "post-create-project-cmd": [ 37 | "php artisan key:generate" 38 | ], 39 | "post-install-cmd": [ 40 | "php artisan clear-compiled", 41 | "php artisan optimize" 42 | ], 43 | "pre-update-cmd": [ 44 | "php artisan clear-compiled" 45 | ], 46 | "post-update-cmd": [ 47 | "php artisan optimize" 48 | ] 49 | }, 50 | "config": { 51 | "preferred-install": "dist" 52 | } 53 | } 54 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /resources/views/donate.blade.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Laravel 5 | 6 | 7 | 8 | 9 |
10 |
11 |
12 | 13 |
14 |

Laravel News

15 | 16 | @if (! $amount) 17 |
18 |
19 | 20 | 21 |
22 |

23 | 26 |

27 |
28 | @else 29 |
30 | {{ csrf_field() }} 31 | 32 | 42 |
43 | @endif 44 |
45 |
46 | 47 | 48 | 49 | 50 | 51 | -------------------------------------------------------------------------------- /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 | -------------------------------------------------------------------------------- /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' => '127.0.0.1', 'port' => 11211, 'weight' => 100, 55 | ], 56 | ], 57 | ], 58 | 59 | 'redis' => [ 60 | 'driver' => 'redis', 61 | 'connection' => 'default', 62 | ], 63 | 64 | ], 65 | 66 | /* 67 | |-------------------------------------------------------------------------- 68 | | Cache Key Prefix 69 | |-------------------------------------------------------------------------- 70 | | 71 | | When utilizing a RAM based store such as APC or Memcached, there might 72 | | be other applications utilizing the same cache. So, we'll specify a 73 | | value to get prefixed to all our keys so we can avoid collisions. 74 | | 75 | */ 76 | 77 | 'prefix' => 'laravel', 78 | 79 | ]; 80 | -------------------------------------------------------------------------------- /config/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/filesystems.php: -------------------------------------------------------------------------------- 1 | 'local', 19 | 20 | /* 21 | |-------------------------------------------------------------------------- 22 | | Default Cloud Filesystem Disk 23 | |-------------------------------------------------------------------------- 24 | | 25 | | Many applications store files both locally and in the cloud. For this 26 | | reason, you may specify a default "cloud" driver here. This driver 27 | | will be bound as the Cloud disk implementation in the container. 28 | | 29 | */ 30 | 31 | 'cloud' => 's3', 32 | 33 | /* 34 | |-------------------------------------------------------------------------- 35 | | Filesystem Disks 36 | |-------------------------------------------------------------------------- 37 | | 38 | | Here you may configure as many filesystem "disks" as you wish, and you 39 | | may even configure multiple disks of the same driver. Defaults have 40 | | been setup for each driver as an example of the required options. 41 | | 42 | */ 43 | 44 | 'disks' => [ 45 | 46 | 'local' => [ 47 | 'driver' => 'local', 48 | 'root' => storage_path('app'), 49 | ], 50 | 51 | 'ftp' => [ 52 | 'driver' => 'ftp', 53 | 'host' => 'ftp.example.com', 54 | 'username' => 'your-username', 55 | 'password' => 'your-password', 56 | 57 | // Optional FTP Settings... 58 | // 'port' => 21, 59 | // 'root' => '', 60 | // 'passive' => true, 61 | // 'ssl' => true, 62 | // 'timeout' => 30, 63 | ], 64 | 65 | 's3' => [ 66 | 'driver' => 's3', 67 | 'key' => 'your-key', 68 | 'secret' => 'your-secret', 69 | 'region' => 'your-region', 70 | 'bucket' => 'your-bucket', 71 | ], 72 | 73 | 'rackspace' => [ 74 | 'driver' => 'rackspace', 75 | 'username' => 'your-username', 76 | 'key' => 'your-key', 77 | 'container' => 'your-container', 78 | 'endpoint' => 'https://identity.api.rackspacecloud.com/v2.0/', 79 | 'region' => 'IAD', 80 | 'url_type' => 'publicURL', 81 | ], 82 | 83 | ], 84 | 85 | ]; 86 | -------------------------------------------------------------------------------- /config/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 | -------------------------------------------------------------------------------- /public/css/style.css: -------------------------------------------------------------------------------- 1 | * { 2 | padding: 0; 3 | margin: 0; 4 | -webkit-font-smoothing: antialiased; 5 | } 6 | body { 7 | background: rgba(0,0,0,0.6); 8 | margin-top: 50px; 9 | font-family: "Lato", Helvetica Neue, Helvetica, Arial; 10 | } 11 | .container { 12 | max-width: 400px; 13 | margin: 0 auto; 14 | padding: 20px; 15 | background: #F0F0F2; 16 | border-radius: 5px; 17 | } 18 | .content { 19 | position: relative; 20 | padding-top: 30px; 21 | text-align: center; 22 | } 23 | .image { 24 | width: 75px; 25 | height: 75px; 26 | position: absolute; 27 | left: 50%; 28 | margin-left: -38px; 29 | top: -55px; 30 | } 31 | .image img { 32 | background: #fff; 33 | width: 64px; 34 | height: 64px; 35 | display: block; 36 | border-radius: 50%; 37 | margin: 4px 0 0; 38 | border: 3px solid #fff; 39 | box-shadow: inset 0 1px 1px rgba(0,0,0,1),0 1px 0 rgba(255,255,255,0.7),0 0 4px rgba(86,149,219,0); 40 | } 41 | h1 { 42 | text-align: center; 43 | margin-bottom: 30px;; 44 | } 45 | .form-item { 46 | margin-bottom: 20px; 47 | } 48 | input, button { 49 | padding: 5px; 50 | } 51 | 52 | input { 53 | box-sizing: border-box; 54 | background: #fff; 55 | margin: 0; 56 | font-size: 15px; 57 | color: #000; 58 | border: 1px solid #cececf; 59 | border-top-color: #b5b5b6; 60 | border-bottom-color: #dededf; 61 | box-shadow: inset 0 1px 1px rgba(124,124,127,0.1),0 1px 0 rgba(255,255,255,0.7),0 0 4px rgba(86,149,219,0); 62 | border-radius: 4px; 63 | transition: border-color .15s linear,box-shadow .15s linear; 64 | } 65 | 66 | /* Rip off stripe styles */ 67 | button { 68 | overflow: hidden; 69 | display: inline-block; 70 | visibility: visible !important; 71 | background-image: -webkit-linear-gradient(#28a0e5,#015e94); 72 | background-image: -moz-linear-gradient(#28a0e5,#015e94); 73 | background-image: -ms-linear-gradient(#28a0e5,#015e94); 74 | background-image: -o-linear-gradient(#28a0e5,#015e94); 75 | background-image: -webkit-linear-gradient(#28a0e5,#015e94); 76 | background-image: -moz-linear-gradient(#28a0e5,#015e94); 77 | background-image: -ms-linear-gradient(#28a0e5,#015e94); 78 | background-image: -o-linear-gradient(#28a0e5,#015e94); 79 | background-image: linear-gradient(#28a0e5,#015e94); 80 | -webkit-font-smoothing: antialiased; 81 | border: 0; 82 | padding: 1px; 83 | text-decoration: none; 84 | -webkit-border-radius: 5px; 85 | -moz-border-radius: 5px; 86 | -ms-border-radius: 5px; 87 | -o-border-radius: 5px; 88 | border-radius: 5px; 89 | -webkit-box-shadow: 0 1px 0 rgba(0,0,0,0.2); 90 | -moz-box-shadow: 0 1px 0 rgba(0,0,0,0.2); 91 | -ms-box-shadow: 0 1px 0 rgba(0,0,0,0.2); 92 | -o-box-shadow: 0 1px 0 rgba(0,0,0,0.2); 93 | box-shadow: 0 1px 0 rgba(0,0,0,0.2); 94 | -webkit-touch-callout: none; 95 | -webkit-tap-highlight-color: transparent; 96 | -webkit-user-select: none; 97 | -moz-user-select: none; 98 | -ms-user-select: none; 99 | -o-user-select: none; 100 | user-select: none; 101 | cursor: pointer; 102 | } 103 | button span { 104 | display: block; 105 | position: relative; 106 | padding: 0 12px; 107 | height: 30px; 108 | line-height: 30px; 109 | background: #1275ff; 110 | background-image: -webkit-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 111 | background-image: -moz-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 112 | background-image: -ms-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 113 | background-image: -o-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 114 | background-image: -webkit-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 115 | background-image: -moz-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 116 | background-image: -ms-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 117 | background-image: -o-linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 118 | background-image: linear-gradient(#7dc5ee,#008cdd 85%,#30a2e4); 119 | font-size: 14px; 120 | color: #fff; 121 | font-weight: bold; 122 | font-family: "Helvetica Neue",Helvetica,Arial,sans-serif; 123 | text-shadow: 0 -1px 0 rgba(0,0,0,0.25); 124 | -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); 125 | -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); 126 | -ms-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); 127 | -o-box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); 128 | box-shadow: inset 0 1px 0 rgba(255,255,255,0.25); 129 | -webkit-border-radius: 4px; 130 | -moz-border-radius: 4px; 131 | -ms-border-radius: 4px; 132 | -o-border-radius: 4px; 133 | border-radius: 4px; 134 | } -------------------------------------------------------------------------------- /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 | ], 66 | 67 | 'pgsql' => [ 68 | 'driver' => 'pgsql', 69 | 'host' => env('DB_HOST', 'localhost'), 70 | 'database' => env('DB_DATABASE', 'forge'), 71 | 'username' => env('DB_USERNAME', 'forge'), 72 | 'password' => env('DB_PASSWORD', ''), 73 | 'charset' => 'utf8', 74 | 'prefix' => '', 75 | 'schema' => 'public', 76 | ], 77 | 78 | 'sqlsrv' => [ 79 | 'driver' => 'sqlsrv', 80 | 'host' => env('DB_HOST', 'localhost'), 81 | 'database' => env('DB_DATABASE', 'forge'), 82 | 'username' => env('DB_USERNAME', 'forge'), 83 | 'password' => env('DB_PASSWORD', ''), 84 | 'charset' => 'utf8', 85 | 'prefix' => '', 86 | ], 87 | 88 | ], 89 | 90 | /* 91 | |-------------------------------------------------------------------------- 92 | | Migration Repository Table 93 | |-------------------------------------------------------------------------- 94 | | 95 | | This table keeps track of all the migrations that have already run for 96 | | your application. Using this information, we can determine which of 97 | | the migrations on disk haven't actually been run in the database. 98 | | 99 | */ 100 | 101 | 'migrations' => 'migrations', 102 | 103 | /* 104 | |-------------------------------------------------------------------------- 105 | | Redis Databases 106 | |-------------------------------------------------------------------------- 107 | | 108 | | Redis is an open source, fast, and advanced key-value store that also 109 | | provides a richer set of commands than a typical key-value systems 110 | | such as APC or Memcached. Laravel makes it easy to dig right in. 111 | | 112 | */ 113 | 114 | 'redis' => [ 115 | 116 | 'cluster' => false, 117 | 118 | 'default' => [ 119 | 'host' => env('REDIS_HOST', 'localhost'), 120 | 'password' => env('REDIS_PASSWORD', null), 121 | 'port' => env('REDIS_PORT', 6379), 122 | 'database' => 0, 123 | ], 124 | 125 | ], 126 | 127 | ]; 128 | -------------------------------------------------------------------------------- /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": "186fff4b92b990c057a161e8b3f20554", 8 | "content-hash": "112bf33c379a21cb11290f8c8590a673", 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.6", 312 | "source": { 313 | "type": "git", 314 | "url": "https://github.com/laravel/framework.git", 315 | "reference": "b774c304ee81fcf5402fa06b261b364ba8f29cf0" 316 | }, 317 | "dist": { 318 | "type": "zip", 319 | "url": "https://api.github.com/repos/laravel/framework/zipball/b774c304ee81fcf5402fa06b261b364ba8f29cf0", 320 | "reference": "b774c304ee81fcf5402fa06b261b364ba8f29cf0", 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.6.*", 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": "2015-12-31 17:41:58" 436 | }, 437 | { 438 | "name": "league/flysystem", 439 | "version": "1.0.16", 440 | "source": { 441 | "type": "git", 442 | "url": "https://github.com/thephpleague/flysystem.git", 443 | "reference": "183e1a610664baf6dcd6fceda415baf43cbdc031" 444 | }, 445 | "dist": { 446 | "type": "zip", 447 | "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/183e1a610664baf6dcd6fceda415baf43cbdc031", 448 | "reference": "183e1a610664baf6dcd6fceda415baf43cbdc031", 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 | "phpspec/prophecy-phpunit": "~1.0", 462 | "phpunit/phpunit": "~4.8" 463 | }, 464 | "suggest": { 465 | "ext-fileinfo": "Required for MimeType", 466 | "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2", 467 | "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3", 468 | "league/flysystem-azure": "Allows you to use Windows Azure Blob storage", 469 | "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching", 470 | "league/flysystem-copy": "Allows you to use Copy.com storage", 471 | "league/flysystem-dropbox": "Allows you to use Dropbox storage", 472 | "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem", 473 | "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files", 474 | "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib", 475 | "league/flysystem-webdav": "Allows you to use WebDAV storage", 476 | "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter" 477 | }, 478 | "type": "library", 479 | "extra": { 480 | "branch-alias": { 481 | "dev-master": "1.1-dev" 482 | } 483 | }, 484 | "autoload": { 485 | "psr-4": { 486 | "League\\Flysystem\\": "src/" 487 | } 488 | }, 489 | "notification-url": "https://packagist.org/downloads/", 490 | "license": [ 491 | "MIT" 492 | ], 493 | "authors": [ 494 | { 495 | "name": "Frank de Jonge", 496 | "email": "info@frenky.net" 497 | } 498 | ], 499 | "description": "Filesystem abstraction: Many filesystems, one API.", 500 | "keywords": [ 501 | "Cloud Files", 502 | "WebDAV", 503 | "abstraction", 504 | "aws", 505 | "cloud", 506 | "copy.com", 507 | "dropbox", 508 | "file systems", 509 | "files", 510 | "filesystem", 511 | "filesystems", 512 | "ftp", 513 | "rackspace", 514 | "remote", 515 | "s3", 516 | "sftp", 517 | "storage" 518 | ], 519 | "time": "2015-12-19 20:16:43" 520 | }, 521 | { 522 | "name": "monolog/monolog", 523 | "version": "1.17.2", 524 | "source": { 525 | "type": "git", 526 | "url": "https://github.com/Seldaek/monolog.git", 527 | "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24" 528 | }, 529 | "dist": { 530 | "type": "zip", 531 | "url": "https://api.github.com/repos/Seldaek/monolog/zipball/bee7f0dc9c3e0b69a6039697533dca1e845c8c24", 532 | "reference": "bee7f0dc9c3e0b69a6039697533dca1e845c8c24", 533 | "shasum": "" 534 | }, 535 | "require": { 536 | "php": ">=5.3.0", 537 | "psr/log": "~1.0" 538 | }, 539 | "provide": { 540 | "psr/log-implementation": "1.0.0" 541 | }, 542 | "require-dev": { 543 | "aws/aws-sdk-php": "^2.4.9", 544 | "doctrine/couchdb": "~1.0@dev", 545 | "graylog2/gelf-php": "~1.0", 546 | "jakub-onderka/php-parallel-lint": "0.9", 547 | "php-console/php-console": "^3.1.3", 548 | "phpunit/phpunit": "~4.5", 549 | "phpunit/phpunit-mock-objects": "2.3.0", 550 | "raven/raven": "^0.13", 551 | "ruflin/elastica": ">=0.90 <3.0", 552 | "swiftmailer/swiftmailer": "~5.3", 553 | "videlalvaro/php-amqplib": "~2.4" 554 | }, 555 | "suggest": { 556 | "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB", 557 | "doctrine/couchdb": "Allow sending log messages to a CouchDB server", 558 | "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)", 559 | "ext-mongo": "Allow sending log messages to a MongoDB server", 560 | "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server", 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": "1.16.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": "2015-10-14 12:51:02" 597 | }, 598 | { 599 | "name": "mtdowling/cron-expression", 600 | "version": "v1.0.4", 601 | "source": { 602 | "type": "git", 603 | "url": "https://github.com/mtdowling/cron-expression.git", 604 | "reference": "fd92e883195e5dfa77720b1868cf084b08be4412" 605 | }, 606 | "dist": { 607 | "type": "zip", 608 | "url": "https://api.github.com/repos/mtdowling/cron-expression/zipball/fd92e883195e5dfa77720b1868cf084b08be4412", 609 | "reference": "fd92e883195e5dfa77720b1868cf084b08be4412", 610 | "shasum": "" 611 | }, 612 | "require": { 613 | "php": ">=5.3.2" 614 | }, 615 | "require-dev": { 616 | "phpunit/phpunit": "4.*" 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": "2015-01-11 23:07:46" 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.0", 692 | "source": { 693 | "type": "git", 694 | "url": "https://github.com/nikic/PHP-Parser.git", 695 | "reference": "c542e5d86a9775abd1021618eb2430278bfc1e01" 696 | }, 697 | "dist": { 698 | "type": "zip", 699 | "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/c542e5d86a9775abd1021618eb2430278bfc1e01", 700 | "reference": "c542e5d86a9775abd1021618eb2430278bfc1e01", 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": "2015-12-04 15:28:43" 739 | }, 740 | { 741 | "name": "paragonie/random_compat", 742 | "version": "1.1.4", 743 | "source": { 744 | "type": "git", 745 | "url": "https://github.com/paragonie/random_compat.git", 746 | "reference": "d762ee5b099a29044603cd4649851e81aa66cb47" 747 | }, 748 | "dist": { 749 | "type": "zip", 750 | "url": "https://api.github.com/repos/paragonie/random_compat/zipball/d762ee5b099a29044603cd4649851e81aa66cb47", 751 | "reference": "d762ee5b099a29044603cd4649851e81aa66cb47", 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": "2015-12-10 14:48:13" 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.6.1", 829 | "source": { 830 | "type": "git", 831 | "url": "https://github.com/bobthecow/psysh.git", 832 | "reference": "0f04df0b23663799a8941fae13cd8e6299bde3ed" 833 | }, 834 | "dist": { 835 | "type": "zip", 836 | "url": "https://api.github.com/repos/bobthecow/psysh/zipball/0f04df0b23663799a8941fae13cd8e6299bde3ed", 837 | "reference": "0f04df0b23663799a8941fae13cd8e6299bde3ed", 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.7.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": "2015-11-12 16:18:56" 897 | }, 898 | { 899 | "name": "stripe/stripe-php", 900 | "version": "v3.5.0", 901 | "source": { 902 | "type": "git", 903 | "url": "https://github.com/stripe/stripe-php.git", 904 | "reference": "0ec0ce46278db7d9d35df72a236c3490b713f028" 905 | }, 906 | "dist": { 907 | "type": "zip", 908 | "url": "https://api.github.com/repos/stripe/stripe-php/zipball/0ec0ce46278db7d9d35df72a236c3490b713f028", 909 | "reference": "0ec0ce46278db7d9d35df72a236c3490b713f028", 910 | "shasum": "" 911 | }, 912 | "require": { 913 | "ext-curl": "*", 914 | "ext-json": "*", 915 | "ext-mbstring": "*", 916 | "php": ">=5.3.3" 917 | }, 918 | "require-dev": { 919 | "phpunit/phpunit": "~4.0", 920 | "satooshi/php-coveralls": "~0.6.1", 921 | "squizlabs/php_codesniffer": "~2.0" 922 | }, 923 | "type": "library", 924 | "extra": { 925 | "branch-alias": { 926 | "dev-master": "2.0-dev" 927 | } 928 | }, 929 | "autoload": { 930 | "psr-4": { 931 | "Stripe\\": "lib/" 932 | } 933 | }, 934 | "notification-url": "https://packagist.org/downloads/", 935 | "license": [ 936 | "MIT" 937 | ], 938 | "authors": [ 939 | { 940 | "name": "Stripe and contributors", 941 | "homepage": "https://github.com/stripe/stripe-php/contributors" 942 | } 943 | ], 944 | "description": "Stripe PHP Library", 945 | "homepage": "https://stripe.com/", 946 | "keywords": [ 947 | "api", 948 | "payment processing", 949 | "stripe" 950 | ], 951 | "time": "2015-12-02 00:11:27" 952 | }, 953 | { 954 | "name": "swiftmailer/swiftmailer", 955 | "version": "v5.4.1", 956 | "source": { 957 | "type": "git", 958 | "url": "https://github.com/swiftmailer/swiftmailer.git", 959 | "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421" 960 | }, 961 | "dist": { 962 | "type": "zip", 963 | "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/0697e6aa65c83edf97bb0f23d8763f94e3f11421", 964 | "reference": "0697e6aa65c83edf97bb0f23d8763f94e3f11421", 965 | "shasum": "" 966 | }, 967 | "require": { 968 | "php": ">=5.3.3" 969 | }, 970 | "require-dev": { 971 | "mockery/mockery": "~0.9.1,<0.9.4" 972 | }, 973 | "type": "library", 974 | "extra": { 975 | "branch-alias": { 976 | "dev-master": "5.4-dev" 977 | } 978 | }, 979 | "autoload": { 980 | "files": [ 981 | "lib/swift_required.php" 982 | ] 983 | }, 984 | "notification-url": "https://packagist.org/downloads/", 985 | "license": [ 986 | "MIT" 987 | ], 988 | "authors": [ 989 | { 990 | "name": "Chris Corbyn" 991 | }, 992 | { 993 | "name": "Fabien Potencier", 994 | "email": "fabien@symfony.com" 995 | } 996 | ], 997 | "description": "Swiftmailer, free feature-rich PHP mailer", 998 | "homepage": "http://swiftmailer.org", 999 | "keywords": [ 1000 | "email", 1001 | "mail", 1002 | "mailer" 1003 | ], 1004 | "time": "2015-06-06 14:19:39" 1005 | }, 1006 | { 1007 | "name": "symfony/console", 1008 | "version": "v3.0.1", 1009 | "source": { 1010 | "type": "git", 1011 | "url": "https://github.com/symfony/console.git", 1012 | "reference": "ebcdc507829df915f4ca23067bd59ee4ef61f6c3" 1013 | }, 1014 | "dist": { 1015 | "type": "zip", 1016 | "url": "https://api.github.com/repos/symfony/console/zipball/ebcdc507829df915f4ca23067bd59ee4ef61f6c3", 1017 | "reference": "ebcdc507829df915f4ca23067bd59ee4ef61f6c3", 1018 | "shasum": "" 1019 | }, 1020 | "require": { 1021 | "php": ">=5.5.9", 1022 | "symfony/polyfill-mbstring": "~1.0" 1023 | }, 1024 | "require-dev": { 1025 | "psr/log": "~1.0", 1026 | "symfony/event-dispatcher": "~2.8|~3.0", 1027 | "symfony/process": "~2.8|~3.0" 1028 | }, 1029 | "suggest": { 1030 | "psr/log": "For using the console logger", 1031 | "symfony/event-dispatcher": "", 1032 | "symfony/process": "" 1033 | }, 1034 | "type": "library", 1035 | "extra": { 1036 | "branch-alias": { 1037 | "dev-master": "3.0-dev" 1038 | } 1039 | }, 1040 | "autoload": { 1041 | "psr-4": { 1042 | "Symfony\\Component\\Console\\": "" 1043 | }, 1044 | "exclude-from-classmap": [ 1045 | "/Tests/" 1046 | ] 1047 | }, 1048 | "notification-url": "https://packagist.org/downloads/", 1049 | "license": [ 1050 | "MIT" 1051 | ], 1052 | "authors": [ 1053 | { 1054 | "name": "Fabien Potencier", 1055 | "email": "fabien@symfony.com" 1056 | }, 1057 | { 1058 | "name": "Symfony Community", 1059 | "homepage": "https://symfony.com/contributors" 1060 | } 1061 | ], 1062 | "description": "Symfony Console Component", 1063 | "homepage": "https://symfony.com", 1064 | "time": "2015-12-22 10:39:06" 1065 | }, 1066 | { 1067 | "name": "symfony/debug", 1068 | "version": "v3.0.1", 1069 | "source": { 1070 | "type": "git", 1071 | "url": "https://github.com/symfony/debug.git", 1072 | "reference": "73612266ac709769effdbfc0762e5b07cfd2ac2a" 1073 | }, 1074 | "dist": { 1075 | "type": "zip", 1076 | "url": "https://api.github.com/repos/symfony/debug/zipball/73612266ac709769effdbfc0762e5b07cfd2ac2a", 1077 | "reference": "73612266ac709769effdbfc0762e5b07cfd2ac2a", 1078 | "shasum": "" 1079 | }, 1080 | "require": { 1081 | "php": ">=5.5.9", 1082 | "psr/log": "~1.0" 1083 | }, 1084 | "conflict": { 1085 | "symfony/http-kernel": ">=2.3,<2.3.24|~2.4.0|>=2.5,<2.5.9|>=2.6,<2.6.2" 1086 | }, 1087 | "require-dev": { 1088 | "symfony/class-loader": "~2.8|~3.0", 1089 | "symfony/http-kernel": "~2.8|~3.0" 1090 | }, 1091 | "type": "library", 1092 | "extra": { 1093 | "branch-alias": { 1094 | "dev-master": "3.0-dev" 1095 | } 1096 | }, 1097 | "autoload": { 1098 | "psr-4": { 1099 | "Symfony\\Component\\Debug\\": "" 1100 | }, 1101 | "exclude-from-classmap": [ 1102 | "/Tests/" 1103 | ] 1104 | }, 1105 | "notification-url": "https://packagist.org/downloads/", 1106 | "license": [ 1107 | "MIT" 1108 | ], 1109 | "authors": [ 1110 | { 1111 | "name": "Fabien Potencier", 1112 | "email": "fabien@symfony.com" 1113 | }, 1114 | { 1115 | "name": "Symfony Community", 1116 | "homepage": "https://symfony.com/contributors" 1117 | } 1118 | ], 1119 | "description": "Symfony Debug Component", 1120 | "homepage": "https://symfony.com", 1121 | "time": "2015-12-26 13:39:53" 1122 | }, 1123 | { 1124 | "name": "symfony/event-dispatcher", 1125 | "version": "v3.0.1", 1126 | "source": { 1127 | "type": "git", 1128 | "url": "https://github.com/symfony/event-dispatcher.git", 1129 | "reference": "d36355e026905fa5229e1ed7b4e9eda2e67adfcf" 1130 | }, 1131 | "dist": { 1132 | "type": "zip", 1133 | "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/d36355e026905fa5229e1ed7b4e9eda2e67adfcf", 1134 | "reference": "d36355e026905fa5229e1ed7b4e9eda2e67adfcf", 1135 | "shasum": "" 1136 | }, 1137 | "require": { 1138 | "php": ">=5.5.9" 1139 | }, 1140 | "require-dev": { 1141 | "psr/log": "~1.0", 1142 | "symfony/config": "~2.8|~3.0", 1143 | "symfony/dependency-injection": "~2.8|~3.0", 1144 | "symfony/expression-language": "~2.8|~3.0", 1145 | "symfony/stopwatch": "~2.8|~3.0" 1146 | }, 1147 | "suggest": { 1148 | "symfony/dependency-injection": "", 1149 | "symfony/http-kernel": "" 1150 | }, 1151 | "type": "library", 1152 | "extra": { 1153 | "branch-alias": { 1154 | "dev-master": "3.0-dev" 1155 | } 1156 | }, 1157 | "autoload": { 1158 | "psr-4": { 1159 | "Symfony\\Component\\EventDispatcher\\": "" 1160 | }, 1161 | "exclude-from-classmap": [ 1162 | "/Tests/" 1163 | ] 1164 | }, 1165 | "notification-url": "https://packagist.org/downloads/", 1166 | "license": [ 1167 | "MIT" 1168 | ], 1169 | "authors": [ 1170 | { 1171 | "name": "Fabien Potencier", 1172 | "email": "fabien@symfony.com" 1173 | }, 1174 | { 1175 | "name": "Symfony Community", 1176 | "homepage": "https://symfony.com/contributors" 1177 | } 1178 | ], 1179 | "description": "Symfony EventDispatcher Component", 1180 | "homepage": "https://symfony.com", 1181 | "time": "2015-10-30 23:35:59" 1182 | }, 1183 | { 1184 | "name": "symfony/finder", 1185 | "version": "v3.0.1", 1186 | "source": { 1187 | "type": "git", 1188 | "url": "https://github.com/symfony/finder.git", 1189 | "reference": "8617895eb798b6bdb338321ce19453dc113e5675" 1190 | }, 1191 | "dist": { 1192 | "type": "zip", 1193 | "url": "https://api.github.com/repos/symfony/finder/zipball/8617895eb798b6bdb338321ce19453dc113e5675", 1194 | "reference": "8617895eb798b6bdb338321ce19453dc113e5675", 1195 | "shasum": "" 1196 | }, 1197 | "require": { 1198 | "php": ">=5.5.9" 1199 | }, 1200 | "type": "library", 1201 | "extra": { 1202 | "branch-alias": { 1203 | "dev-master": "3.0-dev" 1204 | } 1205 | }, 1206 | "autoload": { 1207 | "psr-4": { 1208 | "Symfony\\Component\\Finder\\": "" 1209 | }, 1210 | "exclude-from-classmap": [ 1211 | "/Tests/" 1212 | ] 1213 | }, 1214 | "notification-url": "https://packagist.org/downloads/", 1215 | "license": [ 1216 | "MIT" 1217 | ], 1218 | "authors": [ 1219 | { 1220 | "name": "Fabien Potencier", 1221 | "email": "fabien@symfony.com" 1222 | }, 1223 | { 1224 | "name": "Symfony Community", 1225 | "homepage": "https://symfony.com/contributors" 1226 | } 1227 | ], 1228 | "description": "Symfony Finder Component", 1229 | "homepage": "https://symfony.com", 1230 | "time": "2015-12-05 11:13:14" 1231 | }, 1232 | { 1233 | "name": "symfony/http-foundation", 1234 | "version": "v3.0.1", 1235 | "source": { 1236 | "type": "git", 1237 | "url": "https://github.com/symfony/http-foundation.git", 1238 | "reference": "939c8c28a5b1e4ab7317bc30c1f9aa881c4b06b5" 1239 | }, 1240 | "dist": { 1241 | "type": "zip", 1242 | "url": "https://api.github.com/repos/symfony/http-foundation/zipball/939c8c28a5b1e4ab7317bc30c1f9aa881c4b06b5", 1243 | "reference": "939c8c28a5b1e4ab7317bc30c1f9aa881c4b06b5", 1244 | "shasum": "" 1245 | }, 1246 | "require": { 1247 | "php": ">=5.5.9" 1248 | }, 1249 | "require-dev": { 1250 | "symfony/expression-language": "~2.8|~3.0" 1251 | }, 1252 | "type": "library", 1253 | "extra": { 1254 | "branch-alias": { 1255 | "dev-master": "3.0-dev" 1256 | } 1257 | }, 1258 | "autoload": { 1259 | "psr-4": { 1260 | "Symfony\\Component\\HttpFoundation\\": "" 1261 | }, 1262 | "exclude-from-classmap": [ 1263 | "/Tests/" 1264 | ] 1265 | }, 1266 | "notification-url": "https://packagist.org/downloads/", 1267 | "license": [ 1268 | "MIT" 1269 | ], 1270 | "authors": [ 1271 | { 1272 | "name": "Fabien Potencier", 1273 | "email": "fabien@symfony.com" 1274 | }, 1275 | { 1276 | "name": "Symfony Community", 1277 | "homepage": "https://symfony.com/contributors" 1278 | } 1279 | ], 1280 | "description": "Symfony HttpFoundation Component", 1281 | "homepage": "https://symfony.com", 1282 | "time": "2015-12-18 15:43:53" 1283 | }, 1284 | { 1285 | "name": "symfony/http-kernel", 1286 | "version": "v3.0.1", 1287 | "source": { 1288 | "type": "git", 1289 | "url": "https://github.com/symfony/http-kernel.git", 1290 | "reference": "f7933e9f19e26e7baba7ec04735b466fedd3a6db" 1291 | }, 1292 | "dist": { 1293 | "type": "zip", 1294 | "url": "https://api.github.com/repos/symfony/http-kernel/zipball/f7933e9f19e26e7baba7ec04735b466fedd3a6db", 1295 | "reference": "f7933e9f19e26e7baba7ec04735b466fedd3a6db", 1296 | "shasum": "" 1297 | }, 1298 | "require": { 1299 | "php": ">=5.5.9", 1300 | "psr/log": "~1.0", 1301 | "symfony/debug": "~2.8|~3.0", 1302 | "symfony/event-dispatcher": "~2.8|~3.0", 1303 | "symfony/http-foundation": "~2.8|~3.0" 1304 | }, 1305 | "conflict": { 1306 | "symfony/config": "<2.8" 1307 | }, 1308 | "require-dev": { 1309 | "symfony/browser-kit": "~2.8|~3.0", 1310 | "symfony/class-loader": "~2.8|~3.0", 1311 | "symfony/config": "~2.8|~3.0", 1312 | "symfony/console": "~2.8|~3.0", 1313 | "symfony/css-selector": "~2.8|~3.0", 1314 | "symfony/dependency-injection": "~2.8|~3.0", 1315 | "symfony/dom-crawler": "~2.8|~3.0", 1316 | "symfony/expression-language": "~2.8|~3.0", 1317 | "symfony/finder": "~2.8|~3.0", 1318 | "symfony/process": "~2.8|~3.0", 1319 | "symfony/routing": "~2.8|~3.0", 1320 | "symfony/stopwatch": "~2.8|~3.0", 1321 | "symfony/templating": "~2.8|~3.0", 1322 | "symfony/translation": "~2.8|~3.0", 1323 | "symfony/var-dumper": "~2.8|~3.0" 1324 | }, 1325 | "suggest": { 1326 | "symfony/browser-kit": "", 1327 | "symfony/class-loader": "", 1328 | "symfony/config": "", 1329 | "symfony/console": "", 1330 | "symfony/dependency-injection": "", 1331 | "symfony/finder": "", 1332 | "symfony/var-dumper": "" 1333 | }, 1334 | "type": "library", 1335 | "extra": { 1336 | "branch-alias": { 1337 | "dev-master": "3.0-dev" 1338 | } 1339 | }, 1340 | "autoload": { 1341 | "psr-4": { 1342 | "Symfony\\Component\\HttpKernel\\": "" 1343 | }, 1344 | "exclude-from-classmap": [ 1345 | "/Tests/" 1346 | ] 1347 | }, 1348 | "notification-url": "https://packagist.org/downloads/", 1349 | "license": [ 1350 | "MIT" 1351 | ], 1352 | "authors": [ 1353 | { 1354 | "name": "Fabien Potencier", 1355 | "email": "fabien@symfony.com" 1356 | }, 1357 | { 1358 | "name": "Symfony Community", 1359 | "homepage": "https://symfony.com/contributors" 1360 | } 1361 | ], 1362 | "description": "Symfony HttpKernel Component", 1363 | "homepage": "https://symfony.com", 1364 | "time": "2015-12-26 16:46:13" 1365 | }, 1366 | { 1367 | "name": "symfony/polyfill-mbstring", 1368 | "version": "v1.0.1", 1369 | "source": { 1370 | "type": "git", 1371 | "url": "https://github.com/symfony/polyfill-mbstring.git", 1372 | "reference": "49ff736bd5d41f45240cec77b44967d76e0c3d25" 1373 | }, 1374 | "dist": { 1375 | "type": "zip", 1376 | "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/49ff736bd5d41f45240cec77b44967d76e0c3d25", 1377 | "reference": "49ff736bd5d41f45240cec77b44967d76e0c3d25", 1378 | "shasum": "" 1379 | }, 1380 | "require": { 1381 | "php": ">=5.3.3" 1382 | }, 1383 | "suggest": { 1384 | "ext-mbstring": "For best performance" 1385 | }, 1386 | "type": "library", 1387 | "extra": { 1388 | "branch-alias": { 1389 | "dev-master": "1.0-dev" 1390 | } 1391 | }, 1392 | "autoload": { 1393 | "psr-4": { 1394 | "Symfony\\Polyfill\\Mbstring\\": "" 1395 | }, 1396 | "files": [ 1397 | "bootstrap.php" 1398 | ] 1399 | }, 1400 | "notification-url": "https://packagist.org/downloads/", 1401 | "license": [ 1402 | "MIT" 1403 | ], 1404 | "authors": [ 1405 | { 1406 | "name": "Nicolas Grekas", 1407 | "email": "p@tchwork.com" 1408 | }, 1409 | { 1410 | "name": "Symfony Community", 1411 | "homepage": "https://symfony.com/contributors" 1412 | } 1413 | ], 1414 | "description": "Symfony polyfill for the Mbstring extension", 1415 | "homepage": "https://symfony.com", 1416 | "keywords": [ 1417 | "compatibility", 1418 | "mbstring", 1419 | "polyfill", 1420 | "portable", 1421 | "shim" 1422 | ], 1423 | "time": "2015-11-20 09:19:13" 1424 | }, 1425 | { 1426 | "name": "symfony/polyfill-php56", 1427 | "version": "v1.0.1", 1428 | "source": { 1429 | "type": "git", 1430 | "url": "https://github.com/symfony/polyfill-php56.git", 1431 | "reference": "e2e77609a9e2328eb370fbb0e0d8b2000ebb488f" 1432 | }, 1433 | "dist": { 1434 | "type": "zip", 1435 | "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/e2e77609a9e2328eb370fbb0e0d8b2000ebb488f", 1436 | "reference": "e2e77609a9e2328eb370fbb0e0d8b2000ebb488f", 1437 | "shasum": "" 1438 | }, 1439 | "require": { 1440 | "php": ">=5.3.3", 1441 | "symfony/polyfill-util": "~1.0" 1442 | }, 1443 | "type": "library", 1444 | "extra": { 1445 | "branch-alias": { 1446 | "dev-master": "1.0-dev" 1447 | } 1448 | }, 1449 | "autoload": { 1450 | "psr-4": { 1451 | "Symfony\\Polyfill\\Php56\\": "" 1452 | }, 1453 | "files": [ 1454 | "bootstrap.php" 1455 | ] 1456 | }, 1457 | "notification-url": "https://packagist.org/downloads/", 1458 | "license": [ 1459 | "MIT" 1460 | ], 1461 | "authors": [ 1462 | { 1463 | "name": "Nicolas Grekas", 1464 | "email": "p@tchwork.com" 1465 | }, 1466 | { 1467 | "name": "Symfony Community", 1468 | "homepage": "https://symfony.com/contributors" 1469 | } 1470 | ], 1471 | "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions", 1472 | "homepage": "https://symfony.com", 1473 | "keywords": [ 1474 | "compatibility", 1475 | "polyfill", 1476 | "portable", 1477 | "shim" 1478 | ], 1479 | "time": "2015-12-18 15:10:25" 1480 | }, 1481 | { 1482 | "name": "symfony/polyfill-util", 1483 | "version": "v1.0.1", 1484 | "source": { 1485 | "type": "git", 1486 | "url": "https://github.com/symfony/polyfill-util.git", 1487 | "reference": "4271c55cbc0a77b2641f861b978123e46b3da969" 1488 | }, 1489 | "dist": { 1490 | "type": "zip", 1491 | "url": "https://api.github.com/repos/symfony/polyfill-util/zipball/4271c55cbc0a77b2641f861b978123e46b3da969", 1492 | "reference": "4271c55cbc0a77b2641f861b978123e46b3da969", 1493 | "shasum": "" 1494 | }, 1495 | "require": { 1496 | "php": ">=5.3.3" 1497 | }, 1498 | "type": "library", 1499 | "extra": { 1500 | "branch-alias": { 1501 | "dev-master": "1.0-dev" 1502 | } 1503 | }, 1504 | "autoload": { 1505 | "psr-4": { 1506 | "Symfony\\Polyfill\\Util\\": "" 1507 | } 1508 | }, 1509 | "notification-url": "https://packagist.org/downloads/", 1510 | "license": [ 1511 | "MIT" 1512 | ], 1513 | "authors": [ 1514 | { 1515 | "name": "Nicolas Grekas", 1516 | "email": "p@tchwork.com" 1517 | }, 1518 | { 1519 | "name": "Symfony Community", 1520 | "homepage": "https://symfony.com/contributors" 1521 | } 1522 | ], 1523 | "description": "Symfony utilities for portability of PHP codes", 1524 | "homepage": "https://symfony.com", 1525 | "keywords": [ 1526 | "compat", 1527 | "compatibility", 1528 | "polyfill", 1529 | "shim" 1530 | ], 1531 | "time": "2015-11-04 20:28:58" 1532 | }, 1533 | { 1534 | "name": "symfony/process", 1535 | "version": "v3.0.1", 1536 | "source": { 1537 | "type": "git", 1538 | "url": "https://github.com/symfony/process.git", 1539 | "reference": "f4794f1d00f0746621be3020ffbd8c5e0b217ee3" 1540 | }, 1541 | "dist": { 1542 | "type": "zip", 1543 | "url": "https://api.github.com/repos/symfony/process/zipball/f4794f1d00f0746621be3020ffbd8c5e0b217ee3", 1544 | "reference": "f4794f1d00f0746621be3020ffbd8c5e0b217ee3", 1545 | "shasum": "" 1546 | }, 1547 | "require": { 1548 | "php": ">=5.5.9" 1549 | }, 1550 | "type": "library", 1551 | "extra": { 1552 | "branch-alias": { 1553 | "dev-master": "3.0-dev" 1554 | } 1555 | }, 1556 | "autoload": { 1557 | "psr-4": { 1558 | "Symfony\\Component\\Process\\": "" 1559 | }, 1560 | "exclude-from-classmap": [ 1561 | "/Tests/" 1562 | ] 1563 | }, 1564 | "notification-url": "https://packagist.org/downloads/", 1565 | "license": [ 1566 | "MIT" 1567 | ], 1568 | "authors": [ 1569 | { 1570 | "name": "Fabien Potencier", 1571 | "email": "fabien@symfony.com" 1572 | }, 1573 | { 1574 | "name": "Symfony Community", 1575 | "homepage": "https://symfony.com/contributors" 1576 | } 1577 | ], 1578 | "description": "Symfony Process Component", 1579 | "homepage": "https://symfony.com", 1580 | "time": "2015-12-23 11:04:02" 1581 | }, 1582 | { 1583 | "name": "symfony/routing", 1584 | "version": "v3.0.1", 1585 | "source": { 1586 | "type": "git", 1587 | "url": "https://github.com/symfony/routing.git", 1588 | "reference": "3b1bac52f42cb0f54df1a2dbabd55a1d214e2a59" 1589 | }, 1590 | "dist": { 1591 | "type": "zip", 1592 | "url": "https://api.github.com/repos/symfony/routing/zipball/3b1bac52f42cb0f54df1a2dbabd55a1d214e2a59", 1593 | "reference": "3b1bac52f42cb0f54df1a2dbabd55a1d214e2a59", 1594 | "shasum": "" 1595 | }, 1596 | "require": { 1597 | "php": ">=5.5.9" 1598 | }, 1599 | "conflict": { 1600 | "symfony/config": "<2.8" 1601 | }, 1602 | "require-dev": { 1603 | "doctrine/annotations": "~1.0", 1604 | "doctrine/common": "~2.2", 1605 | "psr/log": "~1.0", 1606 | "symfony/config": "~2.8|~3.0", 1607 | "symfony/expression-language": "~2.8|~3.0", 1608 | "symfony/http-foundation": "~2.8|~3.0", 1609 | "symfony/yaml": "~2.8|~3.0" 1610 | }, 1611 | "suggest": { 1612 | "doctrine/annotations": "For using the annotation loader", 1613 | "symfony/config": "For using the all-in-one router or any loader", 1614 | "symfony/dependency-injection": "For loading routes from a service", 1615 | "symfony/expression-language": "For using expression matching", 1616 | "symfony/yaml": "For using the YAML loader" 1617 | }, 1618 | "type": "library", 1619 | "extra": { 1620 | "branch-alias": { 1621 | "dev-master": "3.0-dev" 1622 | } 1623 | }, 1624 | "autoload": { 1625 | "psr-4": { 1626 | "Symfony\\Component\\Routing\\": "" 1627 | }, 1628 | "exclude-from-classmap": [ 1629 | "/Tests/" 1630 | ] 1631 | }, 1632 | "notification-url": "https://packagist.org/downloads/", 1633 | "license": [ 1634 | "MIT" 1635 | ], 1636 | "authors": [ 1637 | { 1638 | "name": "Fabien Potencier", 1639 | "email": "fabien@symfony.com" 1640 | }, 1641 | { 1642 | "name": "Symfony Community", 1643 | "homepage": "https://symfony.com/contributors" 1644 | } 1645 | ], 1646 | "description": "Symfony Routing Component", 1647 | "homepage": "https://symfony.com", 1648 | "keywords": [ 1649 | "router", 1650 | "routing", 1651 | "uri", 1652 | "url" 1653 | ], 1654 | "time": "2015-12-23 08:00:11" 1655 | }, 1656 | { 1657 | "name": "symfony/translation", 1658 | "version": "v3.0.1", 1659 | "source": { 1660 | "type": "git", 1661 | "url": "https://github.com/symfony/translation.git", 1662 | "reference": "dff0867826a7068d673801b7522f8e2634016ef9" 1663 | }, 1664 | "dist": { 1665 | "type": "zip", 1666 | "url": "https://api.github.com/repos/symfony/translation/zipball/dff0867826a7068d673801b7522f8e2634016ef9", 1667 | "reference": "dff0867826a7068d673801b7522f8e2634016ef9", 1668 | "shasum": "" 1669 | }, 1670 | "require": { 1671 | "php": ">=5.5.9", 1672 | "symfony/polyfill-mbstring": "~1.0" 1673 | }, 1674 | "conflict": { 1675 | "symfony/config": "<2.8" 1676 | }, 1677 | "require-dev": { 1678 | "psr/log": "~1.0", 1679 | "symfony/config": "~2.8|~3.0", 1680 | "symfony/intl": "~2.8|~3.0", 1681 | "symfony/yaml": "~2.8|~3.0" 1682 | }, 1683 | "suggest": { 1684 | "psr/log": "To use logging capability in translator", 1685 | "symfony/config": "", 1686 | "symfony/yaml": "" 1687 | }, 1688 | "type": "library", 1689 | "extra": { 1690 | "branch-alias": { 1691 | "dev-master": "3.0-dev" 1692 | } 1693 | }, 1694 | "autoload": { 1695 | "psr-4": { 1696 | "Symfony\\Component\\Translation\\": "" 1697 | }, 1698 | "exclude-from-classmap": [ 1699 | "/Tests/" 1700 | ] 1701 | }, 1702 | "notification-url": "https://packagist.org/downloads/", 1703 | "license": [ 1704 | "MIT" 1705 | ], 1706 | "authors": [ 1707 | { 1708 | "name": "Fabien Potencier", 1709 | "email": "fabien@symfony.com" 1710 | }, 1711 | { 1712 | "name": "Symfony Community", 1713 | "homepage": "https://symfony.com/contributors" 1714 | } 1715 | ], 1716 | "description": "Symfony Translation Component", 1717 | "homepage": "https://symfony.com", 1718 | "time": "2015-12-05 17:45:07" 1719 | }, 1720 | { 1721 | "name": "symfony/var-dumper", 1722 | "version": "v3.0.1", 1723 | "source": { 1724 | "type": "git", 1725 | "url": "https://github.com/symfony/var-dumper.git", 1726 | "reference": "87db8700deb12ba2b65e858f656a1f885530bcb0" 1727 | }, 1728 | "dist": { 1729 | "type": "zip", 1730 | "url": "https://api.github.com/repos/symfony/var-dumper/zipball/87db8700deb12ba2b65e858f656a1f885530bcb0", 1731 | "reference": "87db8700deb12ba2b65e858f656a1f885530bcb0", 1732 | "shasum": "" 1733 | }, 1734 | "require": { 1735 | "php": ">=5.5.9", 1736 | "symfony/polyfill-mbstring": "~1.0" 1737 | }, 1738 | "require-dev": { 1739 | "twig/twig": "~1.20|~2.0" 1740 | }, 1741 | "suggest": { 1742 | "ext-symfony_debug": "" 1743 | }, 1744 | "type": "library", 1745 | "extra": { 1746 | "branch-alias": { 1747 | "dev-master": "3.0-dev" 1748 | } 1749 | }, 1750 | "autoload": { 1751 | "files": [ 1752 | "Resources/functions/dump.php" 1753 | ], 1754 | "psr-4": { 1755 | "Symfony\\Component\\VarDumper\\": "" 1756 | }, 1757 | "exclude-from-classmap": [ 1758 | "/Tests/" 1759 | ] 1760 | }, 1761 | "notification-url": "https://packagist.org/downloads/", 1762 | "license": [ 1763 | "MIT" 1764 | ], 1765 | "authors": [ 1766 | { 1767 | "name": "Nicolas Grekas", 1768 | "email": "p@tchwork.com" 1769 | }, 1770 | { 1771 | "name": "Symfony Community", 1772 | "homepage": "https://symfony.com/contributors" 1773 | } 1774 | ], 1775 | "description": "Symfony mechanism for exploring and dumping PHP variables", 1776 | "homepage": "https://symfony.com", 1777 | "keywords": [ 1778 | "debug", 1779 | "dump" 1780 | ], 1781 | "time": "2015-12-05 11:13:14" 1782 | }, 1783 | { 1784 | "name": "vlucas/phpdotenv", 1785 | "version": "v2.2.0", 1786 | "source": { 1787 | "type": "git", 1788 | "url": "https://github.com/vlucas/phpdotenv.git", 1789 | "reference": "9caf304153dc2288e4970caec6f1f3b3bc205412" 1790 | }, 1791 | "dist": { 1792 | "type": "zip", 1793 | "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/9caf304153dc2288e4970caec6f1f3b3bc205412", 1794 | "reference": "9caf304153dc2288e4970caec6f1f3b3bc205412", 1795 | "shasum": "" 1796 | }, 1797 | "require": { 1798 | "php": ">=5.3.9" 1799 | }, 1800 | "require-dev": { 1801 | "phpunit/phpunit": "^4.8|^5.0" 1802 | }, 1803 | "type": "library", 1804 | "extra": { 1805 | "branch-alias": { 1806 | "dev-master": "2.2-dev" 1807 | } 1808 | }, 1809 | "autoload": { 1810 | "psr-4": { 1811 | "Dotenv\\": "src/" 1812 | } 1813 | }, 1814 | "notification-url": "https://packagist.org/downloads/", 1815 | "license": [ 1816 | "BSD" 1817 | ], 1818 | "authors": [ 1819 | { 1820 | "name": "Vance Lucas", 1821 | "email": "vance@vancelucas.com", 1822 | "homepage": "http://www.vancelucas.com" 1823 | } 1824 | ], 1825 | "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.", 1826 | "homepage": "http://github.com/vlucas/phpdotenv", 1827 | "keywords": [ 1828 | "dotenv", 1829 | "env", 1830 | "environment" 1831 | ], 1832 | "time": "2015-12-29 15:10:30" 1833 | } 1834 | ], 1835 | "packages-dev": [ 1836 | { 1837 | "name": "doctrine/instantiator", 1838 | "version": "1.0.5", 1839 | "source": { 1840 | "type": "git", 1841 | "url": "https://github.com/doctrine/instantiator.git", 1842 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d" 1843 | }, 1844 | "dist": { 1845 | "type": "zip", 1846 | "url": "https://api.github.com/repos/doctrine/instantiator/zipball/8e884e78f9f0eb1329e445619e04456e64d8051d", 1847 | "reference": "8e884e78f9f0eb1329e445619e04456e64d8051d", 1848 | "shasum": "" 1849 | }, 1850 | "require": { 1851 | "php": ">=5.3,<8.0-DEV" 1852 | }, 1853 | "require-dev": { 1854 | "athletic/athletic": "~0.1.8", 1855 | "ext-pdo": "*", 1856 | "ext-phar": "*", 1857 | "phpunit/phpunit": "~4.0", 1858 | "squizlabs/php_codesniffer": "~2.0" 1859 | }, 1860 | "type": "library", 1861 | "extra": { 1862 | "branch-alias": { 1863 | "dev-master": "1.0.x-dev" 1864 | } 1865 | }, 1866 | "autoload": { 1867 | "psr-4": { 1868 | "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/" 1869 | } 1870 | }, 1871 | "notification-url": "https://packagist.org/downloads/", 1872 | "license": [ 1873 | "MIT" 1874 | ], 1875 | "authors": [ 1876 | { 1877 | "name": "Marco Pivetta", 1878 | "email": "ocramius@gmail.com", 1879 | "homepage": "http://ocramius.github.com/" 1880 | } 1881 | ], 1882 | "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors", 1883 | "homepage": "https://github.com/doctrine/instantiator", 1884 | "keywords": [ 1885 | "constructor", 1886 | "instantiate" 1887 | ], 1888 | "time": "2015-06-14 21:17:01" 1889 | }, 1890 | { 1891 | "name": "fzaninotto/faker", 1892 | "version": "v1.5.0", 1893 | "source": { 1894 | "type": "git", 1895 | "url": "https://github.com/fzaninotto/Faker.git", 1896 | "reference": "d0190b156bcca848d401fb80f31f504f37141c8d" 1897 | }, 1898 | "dist": { 1899 | "type": "zip", 1900 | "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/d0190b156bcca848d401fb80f31f504f37141c8d", 1901 | "reference": "d0190b156bcca848d401fb80f31f504f37141c8d", 1902 | "shasum": "" 1903 | }, 1904 | "require": { 1905 | "php": ">=5.3.3" 1906 | }, 1907 | "require-dev": { 1908 | "phpunit/phpunit": "~4.0", 1909 | "squizlabs/php_codesniffer": "~1.5" 1910 | }, 1911 | "suggest": { 1912 | "ext-intl": "*" 1913 | }, 1914 | "type": "library", 1915 | "extra": { 1916 | "branch-alias": { 1917 | "dev-master": "1.5.x-dev" 1918 | } 1919 | }, 1920 | "autoload": { 1921 | "psr-4": { 1922 | "Faker\\": "src/Faker/" 1923 | } 1924 | }, 1925 | "notification-url": "https://packagist.org/downloads/", 1926 | "license": [ 1927 | "MIT" 1928 | ], 1929 | "authors": [ 1930 | { 1931 | "name": "Francois Zaninotto" 1932 | } 1933 | ], 1934 | "description": "Faker is a PHP library that generates fake data for you.", 1935 | "keywords": [ 1936 | "data", 1937 | "faker", 1938 | "fixtures" 1939 | ], 1940 | "time": "2015-05-29 06:29:14" 1941 | }, 1942 | { 1943 | "name": "hamcrest/hamcrest-php", 1944 | "version": "v1.2.2", 1945 | "source": { 1946 | "type": "git", 1947 | "url": "https://github.com/hamcrest/hamcrest-php.git", 1948 | "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c" 1949 | }, 1950 | "dist": { 1951 | "type": "zip", 1952 | "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/b37020aa976fa52d3de9aa904aa2522dc518f79c", 1953 | "reference": "b37020aa976fa52d3de9aa904aa2522dc518f79c", 1954 | "shasum": "" 1955 | }, 1956 | "require": { 1957 | "php": ">=5.3.2" 1958 | }, 1959 | "replace": { 1960 | "cordoval/hamcrest-php": "*", 1961 | "davedevelopment/hamcrest-php": "*", 1962 | "kodova/hamcrest-php": "*" 1963 | }, 1964 | "require-dev": { 1965 | "phpunit/php-file-iterator": "1.3.3", 1966 | "satooshi/php-coveralls": "dev-master" 1967 | }, 1968 | "type": "library", 1969 | "autoload": { 1970 | "classmap": [ 1971 | "hamcrest" 1972 | ], 1973 | "files": [ 1974 | "hamcrest/Hamcrest.php" 1975 | ] 1976 | }, 1977 | "notification-url": "https://packagist.org/downloads/", 1978 | "license": [ 1979 | "BSD" 1980 | ], 1981 | "description": "This is the PHP port of Hamcrest Matchers", 1982 | "keywords": [ 1983 | "test" 1984 | ], 1985 | "time": "2015-05-11 14:41:42" 1986 | }, 1987 | { 1988 | "name": "mockery/mockery", 1989 | "version": "0.9.4", 1990 | "source": { 1991 | "type": "git", 1992 | "url": "https://github.com/padraic/mockery.git", 1993 | "reference": "70bba85e4aabc9449626651f48b9018ede04f86b" 1994 | }, 1995 | "dist": { 1996 | "type": "zip", 1997 | "url": "https://api.github.com/repos/padraic/mockery/zipball/70bba85e4aabc9449626651f48b9018ede04f86b", 1998 | "reference": "70bba85e4aabc9449626651f48b9018ede04f86b", 1999 | "shasum": "" 2000 | }, 2001 | "require": { 2002 | "hamcrest/hamcrest-php": "~1.1", 2003 | "lib-pcre": ">=7.0", 2004 | "php": ">=5.3.2" 2005 | }, 2006 | "require-dev": { 2007 | "phpunit/phpunit": "~4.0" 2008 | }, 2009 | "type": "library", 2010 | "extra": { 2011 | "branch-alias": { 2012 | "dev-master": "0.9.x-dev" 2013 | } 2014 | }, 2015 | "autoload": { 2016 | "psr-0": { 2017 | "Mockery": "library/" 2018 | } 2019 | }, 2020 | "notification-url": "https://packagist.org/downloads/", 2021 | "license": [ 2022 | "BSD-3-Clause" 2023 | ], 2024 | "authors": [ 2025 | { 2026 | "name": "Pádraic Brady", 2027 | "email": "padraic.brady@gmail.com", 2028 | "homepage": "http://blog.astrumfutura.com" 2029 | }, 2030 | { 2031 | "name": "Dave Marshall", 2032 | "email": "dave.marshall@atstsolutions.co.uk", 2033 | "homepage": "http://davedevelopment.co.uk" 2034 | } 2035 | ], 2036 | "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.", 2037 | "homepage": "http://github.com/padraic/mockery", 2038 | "keywords": [ 2039 | "BDD", 2040 | "TDD", 2041 | "library", 2042 | "mock", 2043 | "mock objects", 2044 | "mockery", 2045 | "stub", 2046 | "test", 2047 | "test double", 2048 | "testing" 2049 | ], 2050 | "time": "2015-04-02 19:54:00" 2051 | }, 2052 | { 2053 | "name": "phpdocumentor/reflection-docblock", 2054 | "version": "2.0.4", 2055 | "source": { 2056 | "type": "git", 2057 | "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git", 2058 | "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8" 2059 | }, 2060 | "dist": { 2061 | "type": "zip", 2062 | "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/d68dbdc53dc358a816f00b300704702b2eaff7b8", 2063 | "reference": "d68dbdc53dc358a816f00b300704702b2eaff7b8", 2064 | "shasum": "" 2065 | }, 2066 | "require": { 2067 | "php": ">=5.3.3" 2068 | }, 2069 | "require-dev": { 2070 | "phpunit/phpunit": "~4.0" 2071 | }, 2072 | "suggest": { 2073 | "dflydev/markdown": "~1.0", 2074 | "erusev/parsedown": "~1.0" 2075 | }, 2076 | "type": "library", 2077 | "extra": { 2078 | "branch-alias": { 2079 | "dev-master": "2.0.x-dev" 2080 | } 2081 | }, 2082 | "autoload": { 2083 | "psr-0": { 2084 | "phpDocumentor": [ 2085 | "src/" 2086 | ] 2087 | } 2088 | }, 2089 | "notification-url": "https://packagist.org/downloads/", 2090 | "license": [ 2091 | "MIT" 2092 | ], 2093 | "authors": [ 2094 | { 2095 | "name": "Mike van Riel", 2096 | "email": "mike.vanriel@naenius.com" 2097 | } 2098 | ], 2099 | "time": "2015-02-03 12:10:50" 2100 | }, 2101 | { 2102 | "name": "phpspec/prophecy", 2103 | "version": "v1.5.0", 2104 | "source": { 2105 | "type": "git", 2106 | "url": "https://github.com/phpspec/prophecy.git", 2107 | "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7" 2108 | }, 2109 | "dist": { 2110 | "type": "zip", 2111 | "url": "https://api.github.com/repos/phpspec/prophecy/zipball/4745ded9307786b730d7a60df5cb5a6c43cf95f7", 2112 | "reference": "4745ded9307786b730d7a60df5cb5a6c43cf95f7", 2113 | "shasum": "" 2114 | }, 2115 | "require": { 2116 | "doctrine/instantiator": "^1.0.2", 2117 | "phpdocumentor/reflection-docblock": "~2.0", 2118 | "sebastian/comparator": "~1.1" 2119 | }, 2120 | "require-dev": { 2121 | "phpspec/phpspec": "~2.0" 2122 | }, 2123 | "type": "library", 2124 | "extra": { 2125 | "branch-alias": { 2126 | "dev-master": "1.4.x-dev" 2127 | } 2128 | }, 2129 | "autoload": { 2130 | "psr-0": { 2131 | "Prophecy\\": "src/" 2132 | } 2133 | }, 2134 | "notification-url": "https://packagist.org/downloads/", 2135 | "license": [ 2136 | "MIT" 2137 | ], 2138 | "authors": [ 2139 | { 2140 | "name": "Konstantin Kudryashov", 2141 | "email": "ever.zet@gmail.com", 2142 | "homepage": "http://everzet.com" 2143 | }, 2144 | { 2145 | "name": "Marcello Duarte", 2146 | "email": "marcello.duarte@gmail.com" 2147 | } 2148 | ], 2149 | "description": "Highly opinionated mocking framework for PHP 5.3+", 2150 | "homepage": "https://github.com/phpspec/prophecy", 2151 | "keywords": [ 2152 | "Double", 2153 | "Dummy", 2154 | "fake", 2155 | "mock", 2156 | "spy", 2157 | "stub" 2158 | ], 2159 | "time": "2015-08-13 10:07:40" 2160 | }, 2161 | { 2162 | "name": "phpunit/php-code-coverage", 2163 | "version": "2.2.4", 2164 | "source": { 2165 | "type": "git", 2166 | "url": "https://github.com/sebastianbergmann/php-code-coverage.git", 2167 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979" 2168 | }, 2169 | "dist": { 2170 | "type": "zip", 2171 | "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/eabf68b476ac7d0f73793aada060f1c1a9bf8979", 2172 | "reference": "eabf68b476ac7d0f73793aada060f1c1a9bf8979", 2173 | "shasum": "" 2174 | }, 2175 | "require": { 2176 | "php": ">=5.3.3", 2177 | "phpunit/php-file-iterator": "~1.3", 2178 | "phpunit/php-text-template": "~1.2", 2179 | "phpunit/php-token-stream": "~1.3", 2180 | "sebastian/environment": "^1.3.2", 2181 | "sebastian/version": "~1.0" 2182 | }, 2183 | "require-dev": { 2184 | "ext-xdebug": ">=2.1.4", 2185 | "phpunit/phpunit": "~4" 2186 | }, 2187 | "suggest": { 2188 | "ext-dom": "*", 2189 | "ext-xdebug": ">=2.2.1", 2190 | "ext-xmlwriter": "*" 2191 | }, 2192 | "type": "library", 2193 | "extra": { 2194 | "branch-alias": { 2195 | "dev-master": "2.2.x-dev" 2196 | } 2197 | }, 2198 | "autoload": { 2199 | "classmap": [ 2200 | "src/" 2201 | ] 2202 | }, 2203 | "notification-url": "https://packagist.org/downloads/", 2204 | "license": [ 2205 | "BSD-3-Clause" 2206 | ], 2207 | "authors": [ 2208 | { 2209 | "name": "Sebastian Bergmann", 2210 | "email": "sb@sebastian-bergmann.de", 2211 | "role": "lead" 2212 | } 2213 | ], 2214 | "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.", 2215 | "homepage": "https://github.com/sebastianbergmann/php-code-coverage", 2216 | "keywords": [ 2217 | "coverage", 2218 | "testing", 2219 | "xunit" 2220 | ], 2221 | "time": "2015-10-06 15:47:00" 2222 | }, 2223 | { 2224 | "name": "phpunit/php-file-iterator", 2225 | "version": "1.4.1", 2226 | "source": { 2227 | "type": "git", 2228 | "url": "https://github.com/sebastianbergmann/php-file-iterator.git", 2229 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0" 2230 | }, 2231 | "dist": { 2232 | "type": "zip", 2233 | "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 2234 | "reference": "6150bf2c35d3fc379e50c7602b75caceaa39dbf0", 2235 | "shasum": "" 2236 | }, 2237 | "require": { 2238 | "php": ">=5.3.3" 2239 | }, 2240 | "type": "library", 2241 | "extra": { 2242 | "branch-alias": { 2243 | "dev-master": "1.4.x-dev" 2244 | } 2245 | }, 2246 | "autoload": { 2247 | "classmap": [ 2248 | "src/" 2249 | ] 2250 | }, 2251 | "notification-url": "https://packagist.org/downloads/", 2252 | "license": [ 2253 | "BSD-3-Clause" 2254 | ], 2255 | "authors": [ 2256 | { 2257 | "name": "Sebastian Bergmann", 2258 | "email": "sb@sebastian-bergmann.de", 2259 | "role": "lead" 2260 | } 2261 | ], 2262 | "description": "FilterIterator implementation that filters files based on a list of suffixes.", 2263 | "homepage": "https://github.com/sebastianbergmann/php-file-iterator/", 2264 | "keywords": [ 2265 | "filesystem", 2266 | "iterator" 2267 | ], 2268 | "time": "2015-06-21 13:08:43" 2269 | }, 2270 | { 2271 | "name": "phpunit/php-text-template", 2272 | "version": "1.2.1", 2273 | "source": { 2274 | "type": "git", 2275 | "url": "https://github.com/sebastianbergmann/php-text-template.git", 2276 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686" 2277 | }, 2278 | "dist": { 2279 | "type": "zip", 2280 | "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2281 | "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686", 2282 | "shasum": "" 2283 | }, 2284 | "require": { 2285 | "php": ">=5.3.3" 2286 | }, 2287 | "type": "library", 2288 | "autoload": { 2289 | "classmap": [ 2290 | "src/" 2291 | ] 2292 | }, 2293 | "notification-url": "https://packagist.org/downloads/", 2294 | "license": [ 2295 | "BSD-3-Clause" 2296 | ], 2297 | "authors": [ 2298 | { 2299 | "name": "Sebastian Bergmann", 2300 | "email": "sebastian@phpunit.de", 2301 | "role": "lead" 2302 | } 2303 | ], 2304 | "description": "Simple template engine.", 2305 | "homepage": "https://github.com/sebastianbergmann/php-text-template/", 2306 | "keywords": [ 2307 | "template" 2308 | ], 2309 | "time": "2015-06-21 13:50:34" 2310 | }, 2311 | { 2312 | "name": "phpunit/php-timer", 2313 | "version": "1.0.7", 2314 | "source": { 2315 | "type": "git", 2316 | "url": "https://github.com/sebastianbergmann/php-timer.git", 2317 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b" 2318 | }, 2319 | "dist": { 2320 | "type": "zip", 2321 | "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 2322 | "reference": "3e82f4e9fc92665fafd9157568e4dcb01d014e5b", 2323 | "shasum": "" 2324 | }, 2325 | "require": { 2326 | "php": ">=5.3.3" 2327 | }, 2328 | "type": "library", 2329 | "autoload": { 2330 | "classmap": [ 2331 | "src/" 2332 | ] 2333 | }, 2334 | "notification-url": "https://packagist.org/downloads/", 2335 | "license": [ 2336 | "BSD-3-Clause" 2337 | ], 2338 | "authors": [ 2339 | { 2340 | "name": "Sebastian Bergmann", 2341 | "email": "sb@sebastian-bergmann.de", 2342 | "role": "lead" 2343 | } 2344 | ], 2345 | "description": "Utility class for timing", 2346 | "homepage": "https://github.com/sebastianbergmann/php-timer/", 2347 | "keywords": [ 2348 | "timer" 2349 | ], 2350 | "time": "2015-06-21 08:01:12" 2351 | }, 2352 | { 2353 | "name": "phpunit/php-token-stream", 2354 | "version": "1.4.8", 2355 | "source": { 2356 | "type": "git", 2357 | "url": "https://github.com/sebastianbergmann/php-token-stream.git", 2358 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da" 2359 | }, 2360 | "dist": { 2361 | "type": "zip", 2362 | "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 2363 | "reference": "3144ae21711fb6cac0b1ab4cbe63b75ce3d4e8da", 2364 | "shasum": "" 2365 | }, 2366 | "require": { 2367 | "ext-tokenizer": "*", 2368 | "php": ">=5.3.3" 2369 | }, 2370 | "require-dev": { 2371 | "phpunit/phpunit": "~4.2" 2372 | }, 2373 | "type": "library", 2374 | "extra": { 2375 | "branch-alias": { 2376 | "dev-master": "1.4-dev" 2377 | } 2378 | }, 2379 | "autoload": { 2380 | "classmap": [ 2381 | "src/" 2382 | ] 2383 | }, 2384 | "notification-url": "https://packagist.org/downloads/", 2385 | "license": [ 2386 | "BSD-3-Clause" 2387 | ], 2388 | "authors": [ 2389 | { 2390 | "name": "Sebastian Bergmann", 2391 | "email": "sebastian@phpunit.de" 2392 | } 2393 | ], 2394 | "description": "Wrapper around PHP's tokenizer extension.", 2395 | "homepage": "https://github.com/sebastianbergmann/php-token-stream/", 2396 | "keywords": [ 2397 | "tokenizer" 2398 | ], 2399 | "time": "2015-09-15 10:49:45" 2400 | }, 2401 | { 2402 | "name": "phpunit/phpunit", 2403 | "version": "4.8.21", 2404 | "source": { 2405 | "type": "git", 2406 | "url": "https://github.com/sebastianbergmann/phpunit.git", 2407 | "reference": "ea76b17bced0500a28098626b84eda12dbcf119c" 2408 | }, 2409 | "dist": { 2410 | "type": "zip", 2411 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/ea76b17bced0500a28098626b84eda12dbcf119c", 2412 | "reference": "ea76b17bced0500a28098626b84eda12dbcf119c", 2413 | "shasum": "" 2414 | }, 2415 | "require": { 2416 | "ext-dom": "*", 2417 | "ext-json": "*", 2418 | "ext-pcre": "*", 2419 | "ext-reflection": "*", 2420 | "ext-spl": "*", 2421 | "php": ">=5.3.3", 2422 | "phpspec/prophecy": "^1.3.1", 2423 | "phpunit/php-code-coverage": "~2.1", 2424 | "phpunit/php-file-iterator": "~1.4", 2425 | "phpunit/php-text-template": "~1.2", 2426 | "phpunit/php-timer": ">=1.0.6", 2427 | "phpunit/phpunit-mock-objects": "~2.3", 2428 | "sebastian/comparator": "~1.1", 2429 | "sebastian/diff": "~1.2", 2430 | "sebastian/environment": "~1.3", 2431 | "sebastian/exporter": "~1.2", 2432 | "sebastian/global-state": "~1.0", 2433 | "sebastian/version": "~1.0", 2434 | "symfony/yaml": "~2.1|~3.0" 2435 | }, 2436 | "suggest": { 2437 | "phpunit/php-invoker": "~1.1" 2438 | }, 2439 | "bin": [ 2440 | "phpunit" 2441 | ], 2442 | "type": "library", 2443 | "extra": { 2444 | "branch-alias": { 2445 | "dev-master": "4.8.x-dev" 2446 | } 2447 | }, 2448 | "autoload": { 2449 | "classmap": [ 2450 | "src/" 2451 | ] 2452 | }, 2453 | "notification-url": "https://packagist.org/downloads/", 2454 | "license": [ 2455 | "BSD-3-Clause" 2456 | ], 2457 | "authors": [ 2458 | { 2459 | "name": "Sebastian Bergmann", 2460 | "email": "sebastian@phpunit.de", 2461 | "role": "lead" 2462 | } 2463 | ], 2464 | "description": "The PHP Unit Testing framework.", 2465 | "homepage": "https://phpunit.de/", 2466 | "keywords": [ 2467 | "phpunit", 2468 | "testing", 2469 | "xunit" 2470 | ], 2471 | "time": "2015-12-12 07:45:58" 2472 | }, 2473 | { 2474 | "name": "phpunit/phpunit-mock-objects", 2475 | "version": "2.3.8", 2476 | "source": { 2477 | "type": "git", 2478 | "url": "https://github.com/sebastianbergmann/phpunit-mock-objects.git", 2479 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983" 2480 | }, 2481 | "dist": { 2482 | "type": "zip", 2483 | "url": "https://api.github.com/repos/sebastianbergmann/phpunit-mock-objects/zipball/ac8e7a3db35738d56ee9a76e78a4e03d97628983", 2484 | "reference": "ac8e7a3db35738d56ee9a76e78a4e03d97628983", 2485 | "shasum": "" 2486 | }, 2487 | "require": { 2488 | "doctrine/instantiator": "^1.0.2", 2489 | "php": ">=5.3.3", 2490 | "phpunit/php-text-template": "~1.2", 2491 | "sebastian/exporter": "~1.2" 2492 | }, 2493 | "require-dev": { 2494 | "phpunit/phpunit": "~4.4" 2495 | }, 2496 | "suggest": { 2497 | "ext-soap": "*" 2498 | }, 2499 | "type": "library", 2500 | "extra": { 2501 | "branch-alias": { 2502 | "dev-master": "2.3.x-dev" 2503 | } 2504 | }, 2505 | "autoload": { 2506 | "classmap": [ 2507 | "src/" 2508 | ] 2509 | }, 2510 | "notification-url": "https://packagist.org/downloads/", 2511 | "license": [ 2512 | "BSD-3-Clause" 2513 | ], 2514 | "authors": [ 2515 | { 2516 | "name": "Sebastian Bergmann", 2517 | "email": "sb@sebastian-bergmann.de", 2518 | "role": "lead" 2519 | } 2520 | ], 2521 | "description": "Mock Object library for PHPUnit", 2522 | "homepage": "https://github.com/sebastianbergmann/phpunit-mock-objects/", 2523 | "keywords": [ 2524 | "mock", 2525 | "xunit" 2526 | ], 2527 | "time": "2015-10-02 06:51:40" 2528 | }, 2529 | { 2530 | "name": "sebastian/comparator", 2531 | "version": "1.2.0", 2532 | "source": { 2533 | "type": "git", 2534 | "url": "https://github.com/sebastianbergmann/comparator.git", 2535 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22" 2536 | }, 2537 | "dist": { 2538 | "type": "zip", 2539 | "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/937efb279bd37a375bcadf584dec0726f84dbf22", 2540 | "reference": "937efb279bd37a375bcadf584dec0726f84dbf22", 2541 | "shasum": "" 2542 | }, 2543 | "require": { 2544 | "php": ">=5.3.3", 2545 | "sebastian/diff": "~1.2", 2546 | "sebastian/exporter": "~1.2" 2547 | }, 2548 | "require-dev": { 2549 | "phpunit/phpunit": "~4.4" 2550 | }, 2551 | "type": "library", 2552 | "extra": { 2553 | "branch-alias": { 2554 | "dev-master": "1.2.x-dev" 2555 | } 2556 | }, 2557 | "autoload": { 2558 | "classmap": [ 2559 | "src/" 2560 | ] 2561 | }, 2562 | "notification-url": "https://packagist.org/downloads/", 2563 | "license": [ 2564 | "BSD-3-Clause" 2565 | ], 2566 | "authors": [ 2567 | { 2568 | "name": "Jeff Welch", 2569 | "email": "whatthejeff@gmail.com" 2570 | }, 2571 | { 2572 | "name": "Volker Dusch", 2573 | "email": "github@wallbash.com" 2574 | }, 2575 | { 2576 | "name": "Bernhard Schussek", 2577 | "email": "bschussek@2bepublished.at" 2578 | }, 2579 | { 2580 | "name": "Sebastian Bergmann", 2581 | "email": "sebastian@phpunit.de" 2582 | } 2583 | ], 2584 | "description": "Provides the functionality to compare PHP values for equality", 2585 | "homepage": "http://www.github.com/sebastianbergmann/comparator", 2586 | "keywords": [ 2587 | "comparator", 2588 | "compare", 2589 | "equality" 2590 | ], 2591 | "time": "2015-07-26 15:48:44" 2592 | }, 2593 | { 2594 | "name": "sebastian/diff", 2595 | "version": "1.4.1", 2596 | "source": { 2597 | "type": "git", 2598 | "url": "https://github.com/sebastianbergmann/diff.git", 2599 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e" 2600 | }, 2601 | "dist": { 2602 | "type": "zip", 2603 | "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/13edfd8706462032c2f52b4b862974dd46b71c9e", 2604 | "reference": "13edfd8706462032c2f52b4b862974dd46b71c9e", 2605 | "shasum": "" 2606 | }, 2607 | "require": { 2608 | "php": ">=5.3.3" 2609 | }, 2610 | "require-dev": { 2611 | "phpunit/phpunit": "~4.8" 2612 | }, 2613 | "type": "library", 2614 | "extra": { 2615 | "branch-alias": { 2616 | "dev-master": "1.4-dev" 2617 | } 2618 | }, 2619 | "autoload": { 2620 | "classmap": [ 2621 | "src/" 2622 | ] 2623 | }, 2624 | "notification-url": "https://packagist.org/downloads/", 2625 | "license": [ 2626 | "BSD-3-Clause" 2627 | ], 2628 | "authors": [ 2629 | { 2630 | "name": "Kore Nordmann", 2631 | "email": "mail@kore-nordmann.de" 2632 | }, 2633 | { 2634 | "name": "Sebastian Bergmann", 2635 | "email": "sebastian@phpunit.de" 2636 | } 2637 | ], 2638 | "description": "Diff implementation", 2639 | "homepage": "https://github.com/sebastianbergmann/diff", 2640 | "keywords": [ 2641 | "diff" 2642 | ], 2643 | "time": "2015-12-08 07:14:41" 2644 | }, 2645 | { 2646 | "name": "sebastian/environment", 2647 | "version": "1.3.3", 2648 | "source": { 2649 | "type": "git", 2650 | "url": "https://github.com/sebastianbergmann/environment.git", 2651 | "reference": "6e7133793a8e5a5714a551a8324337374be209df" 2652 | }, 2653 | "dist": { 2654 | "type": "zip", 2655 | "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/6e7133793a8e5a5714a551a8324337374be209df", 2656 | "reference": "6e7133793a8e5a5714a551a8324337374be209df", 2657 | "shasum": "" 2658 | }, 2659 | "require": { 2660 | "php": ">=5.3.3" 2661 | }, 2662 | "require-dev": { 2663 | "phpunit/phpunit": "~4.4" 2664 | }, 2665 | "type": "library", 2666 | "extra": { 2667 | "branch-alias": { 2668 | "dev-master": "1.3.x-dev" 2669 | } 2670 | }, 2671 | "autoload": { 2672 | "classmap": [ 2673 | "src/" 2674 | ] 2675 | }, 2676 | "notification-url": "https://packagist.org/downloads/", 2677 | "license": [ 2678 | "BSD-3-Clause" 2679 | ], 2680 | "authors": [ 2681 | { 2682 | "name": "Sebastian Bergmann", 2683 | "email": "sebastian@phpunit.de" 2684 | } 2685 | ], 2686 | "description": "Provides functionality to handle HHVM/PHP environments", 2687 | "homepage": "http://www.github.com/sebastianbergmann/environment", 2688 | "keywords": [ 2689 | "Xdebug", 2690 | "environment", 2691 | "hhvm" 2692 | ], 2693 | "time": "2015-12-02 08:37:27" 2694 | }, 2695 | { 2696 | "name": "sebastian/exporter", 2697 | "version": "1.2.1", 2698 | "source": { 2699 | "type": "git", 2700 | "url": "https://github.com/sebastianbergmann/exporter.git", 2701 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e" 2702 | }, 2703 | "dist": { 2704 | "type": "zip", 2705 | "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/7ae5513327cb536431847bcc0c10edba2701064e", 2706 | "reference": "7ae5513327cb536431847bcc0c10edba2701064e", 2707 | "shasum": "" 2708 | }, 2709 | "require": { 2710 | "php": ">=5.3.3", 2711 | "sebastian/recursion-context": "~1.0" 2712 | }, 2713 | "require-dev": { 2714 | "phpunit/phpunit": "~4.4" 2715 | }, 2716 | "type": "library", 2717 | "extra": { 2718 | "branch-alias": { 2719 | "dev-master": "1.2.x-dev" 2720 | } 2721 | }, 2722 | "autoload": { 2723 | "classmap": [ 2724 | "src/" 2725 | ] 2726 | }, 2727 | "notification-url": "https://packagist.org/downloads/", 2728 | "license": [ 2729 | "BSD-3-Clause" 2730 | ], 2731 | "authors": [ 2732 | { 2733 | "name": "Jeff Welch", 2734 | "email": "whatthejeff@gmail.com" 2735 | }, 2736 | { 2737 | "name": "Volker Dusch", 2738 | "email": "github@wallbash.com" 2739 | }, 2740 | { 2741 | "name": "Bernhard Schussek", 2742 | "email": "bschussek@2bepublished.at" 2743 | }, 2744 | { 2745 | "name": "Sebastian Bergmann", 2746 | "email": "sebastian@phpunit.de" 2747 | }, 2748 | { 2749 | "name": "Adam Harvey", 2750 | "email": "aharvey@php.net" 2751 | } 2752 | ], 2753 | "description": "Provides the functionality to export PHP variables for visualization", 2754 | "homepage": "http://www.github.com/sebastianbergmann/exporter", 2755 | "keywords": [ 2756 | "export", 2757 | "exporter" 2758 | ], 2759 | "time": "2015-06-21 07:55:53" 2760 | }, 2761 | { 2762 | "name": "sebastian/global-state", 2763 | "version": "1.1.1", 2764 | "source": { 2765 | "type": "git", 2766 | "url": "https://github.com/sebastianbergmann/global-state.git", 2767 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4" 2768 | }, 2769 | "dist": { 2770 | "type": "zip", 2771 | "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bc37d50fea7d017d3d340f230811c9f1d7280af4", 2772 | "reference": "bc37d50fea7d017d3d340f230811c9f1d7280af4", 2773 | "shasum": "" 2774 | }, 2775 | "require": { 2776 | "php": ">=5.3.3" 2777 | }, 2778 | "require-dev": { 2779 | "phpunit/phpunit": "~4.2" 2780 | }, 2781 | "suggest": { 2782 | "ext-uopz": "*" 2783 | }, 2784 | "type": "library", 2785 | "extra": { 2786 | "branch-alias": { 2787 | "dev-master": "1.0-dev" 2788 | } 2789 | }, 2790 | "autoload": { 2791 | "classmap": [ 2792 | "src/" 2793 | ] 2794 | }, 2795 | "notification-url": "https://packagist.org/downloads/", 2796 | "license": [ 2797 | "BSD-3-Clause" 2798 | ], 2799 | "authors": [ 2800 | { 2801 | "name": "Sebastian Bergmann", 2802 | "email": "sebastian@phpunit.de" 2803 | } 2804 | ], 2805 | "description": "Snapshotting of global state", 2806 | "homepage": "http://www.github.com/sebastianbergmann/global-state", 2807 | "keywords": [ 2808 | "global state" 2809 | ], 2810 | "time": "2015-10-12 03:26:01" 2811 | }, 2812 | { 2813 | "name": "sebastian/recursion-context", 2814 | "version": "1.0.2", 2815 | "source": { 2816 | "type": "git", 2817 | "url": "https://github.com/sebastianbergmann/recursion-context.git", 2818 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791" 2819 | }, 2820 | "dist": { 2821 | "type": "zip", 2822 | "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/913401df809e99e4f47b27cdd781f4a258d58791", 2823 | "reference": "913401df809e99e4f47b27cdd781f4a258d58791", 2824 | "shasum": "" 2825 | }, 2826 | "require": { 2827 | "php": ">=5.3.3" 2828 | }, 2829 | "require-dev": { 2830 | "phpunit/phpunit": "~4.4" 2831 | }, 2832 | "type": "library", 2833 | "extra": { 2834 | "branch-alias": { 2835 | "dev-master": "1.0.x-dev" 2836 | } 2837 | }, 2838 | "autoload": { 2839 | "classmap": [ 2840 | "src/" 2841 | ] 2842 | }, 2843 | "notification-url": "https://packagist.org/downloads/", 2844 | "license": [ 2845 | "BSD-3-Clause" 2846 | ], 2847 | "authors": [ 2848 | { 2849 | "name": "Jeff Welch", 2850 | "email": "whatthejeff@gmail.com" 2851 | }, 2852 | { 2853 | "name": "Sebastian Bergmann", 2854 | "email": "sebastian@phpunit.de" 2855 | }, 2856 | { 2857 | "name": "Adam Harvey", 2858 | "email": "aharvey@php.net" 2859 | } 2860 | ], 2861 | "description": "Provides functionality to recursively process PHP variables", 2862 | "homepage": "http://www.github.com/sebastianbergmann/recursion-context", 2863 | "time": "2015-11-11 19:50:13" 2864 | }, 2865 | { 2866 | "name": "sebastian/version", 2867 | "version": "1.0.6", 2868 | "source": { 2869 | "type": "git", 2870 | "url": "https://github.com/sebastianbergmann/version.git", 2871 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6" 2872 | }, 2873 | "dist": { 2874 | "type": "zip", 2875 | "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2876 | "reference": "58b3a85e7999757d6ad81c787a1fbf5ff6c628c6", 2877 | "shasum": "" 2878 | }, 2879 | "type": "library", 2880 | "autoload": { 2881 | "classmap": [ 2882 | "src/" 2883 | ] 2884 | }, 2885 | "notification-url": "https://packagist.org/downloads/", 2886 | "license": [ 2887 | "BSD-3-Clause" 2888 | ], 2889 | "authors": [ 2890 | { 2891 | "name": "Sebastian Bergmann", 2892 | "email": "sebastian@phpunit.de", 2893 | "role": "lead" 2894 | } 2895 | ], 2896 | "description": "Library that helps with managing the version number of Git-hosted PHP projects", 2897 | "homepage": "https://github.com/sebastianbergmann/version", 2898 | "time": "2015-06-21 13:59:46" 2899 | }, 2900 | { 2901 | "name": "symfony/css-selector", 2902 | "version": "v3.0.1", 2903 | "source": { 2904 | "type": "git", 2905 | "url": "https://github.com/symfony/css-selector.git", 2906 | "reference": "4613311fd46e146f506403ce2f8a0c71d402d2a3" 2907 | }, 2908 | "dist": { 2909 | "type": "zip", 2910 | "url": "https://api.github.com/repos/symfony/css-selector/zipball/4613311fd46e146f506403ce2f8a0c71d402d2a3", 2911 | "reference": "4613311fd46e146f506403ce2f8a0c71d402d2a3", 2912 | "shasum": "" 2913 | }, 2914 | "require": { 2915 | "php": ">=5.5.9" 2916 | }, 2917 | "type": "library", 2918 | "extra": { 2919 | "branch-alias": { 2920 | "dev-master": "3.0-dev" 2921 | } 2922 | }, 2923 | "autoload": { 2924 | "psr-4": { 2925 | "Symfony\\Component\\CssSelector\\": "" 2926 | }, 2927 | "exclude-from-classmap": [ 2928 | "/Tests/" 2929 | ] 2930 | }, 2931 | "notification-url": "https://packagist.org/downloads/", 2932 | "license": [ 2933 | "MIT" 2934 | ], 2935 | "authors": [ 2936 | { 2937 | "name": "Jean-François Simon", 2938 | "email": "jeanfrancois.simon@sensiolabs.com" 2939 | }, 2940 | { 2941 | "name": "Fabien Potencier", 2942 | "email": "fabien@symfony.com" 2943 | }, 2944 | { 2945 | "name": "Symfony Community", 2946 | "homepage": "https://symfony.com/contributors" 2947 | } 2948 | ], 2949 | "description": "Symfony CssSelector Component", 2950 | "homepage": "https://symfony.com", 2951 | "time": "2015-12-05 17:45:07" 2952 | }, 2953 | { 2954 | "name": "symfony/dom-crawler", 2955 | "version": "v3.0.1", 2956 | "source": { 2957 | "type": "git", 2958 | "url": "https://github.com/symfony/dom-crawler.git", 2959 | "reference": "7c622b0c9fb8bdb146d6dfa86c5f91dcbfdbc11d" 2960 | }, 2961 | "dist": { 2962 | "type": "zip", 2963 | "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/7c622b0c9fb8bdb146d6dfa86c5f91dcbfdbc11d", 2964 | "reference": "7c622b0c9fb8bdb146d6dfa86c5f91dcbfdbc11d", 2965 | "shasum": "" 2966 | }, 2967 | "require": { 2968 | "php": ">=5.5.9", 2969 | "symfony/polyfill-mbstring": "~1.0" 2970 | }, 2971 | "require-dev": { 2972 | "symfony/css-selector": "~2.8|~3.0" 2973 | }, 2974 | "suggest": { 2975 | "symfony/css-selector": "" 2976 | }, 2977 | "type": "library", 2978 | "extra": { 2979 | "branch-alias": { 2980 | "dev-master": "3.0-dev" 2981 | } 2982 | }, 2983 | "autoload": { 2984 | "psr-4": { 2985 | "Symfony\\Component\\DomCrawler\\": "" 2986 | }, 2987 | "exclude-from-classmap": [ 2988 | "/Tests/" 2989 | ] 2990 | }, 2991 | "notification-url": "https://packagist.org/downloads/", 2992 | "license": [ 2993 | "MIT" 2994 | ], 2995 | "authors": [ 2996 | { 2997 | "name": "Fabien Potencier", 2998 | "email": "fabien@symfony.com" 2999 | }, 3000 | { 3001 | "name": "Symfony Community", 3002 | "homepage": "https://symfony.com/contributors" 3003 | } 3004 | ], 3005 | "description": "Symfony DomCrawler Component", 3006 | "homepage": "https://symfony.com", 3007 | "time": "2015-12-26 13:42:31" 3008 | }, 3009 | { 3010 | "name": "symfony/yaml", 3011 | "version": "v3.0.1", 3012 | "source": { 3013 | "type": "git", 3014 | "url": "https://github.com/symfony/yaml.git", 3015 | "reference": "3df409958a646dad2bc5046c3fb671ee24a1a691" 3016 | }, 3017 | "dist": { 3018 | "type": "zip", 3019 | "url": "https://api.github.com/repos/symfony/yaml/zipball/3df409958a646dad2bc5046c3fb671ee24a1a691", 3020 | "reference": "3df409958a646dad2bc5046c3fb671ee24a1a691", 3021 | "shasum": "" 3022 | }, 3023 | "require": { 3024 | "php": ">=5.5.9" 3025 | }, 3026 | "type": "library", 3027 | "extra": { 3028 | "branch-alias": { 3029 | "dev-master": "3.0-dev" 3030 | } 3031 | }, 3032 | "autoload": { 3033 | "psr-4": { 3034 | "Symfony\\Component\\Yaml\\": "" 3035 | }, 3036 | "exclude-from-classmap": [ 3037 | "/Tests/" 3038 | ] 3039 | }, 3040 | "notification-url": "https://packagist.org/downloads/", 3041 | "license": [ 3042 | "MIT" 3043 | ], 3044 | "authors": [ 3045 | { 3046 | "name": "Fabien Potencier", 3047 | "email": "fabien@symfony.com" 3048 | }, 3049 | { 3050 | "name": "Symfony Community", 3051 | "homepage": "https://symfony.com/contributors" 3052 | } 3053 | ], 3054 | "description": "Symfony Yaml Component", 3055 | "homepage": "https://symfony.com", 3056 | "time": "2015-12-26 13:39:53" 3057 | } 3058 | ], 3059 | "aliases": [], 3060 | "minimum-stability": "stable", 3061 | "stability-flags": [], 3062 | "prefer-stable": false, 3063 | "prefer-lowest": false, 3064 | "platform": { 3065 | "php": ">=5.5.9" 3066 | }, 3067 | "platform-dev": [] 3068 | } 3069 | --------------------------------------------------------------------------------