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