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