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