Commit 2d2704c6 authored by Jens Segers's avatar Jens Segers

Dump tests/bootstrap.php

parent 84d8fd5e
...@@ -27,6 +27,13 @@ ...@@ -27,6 +27,13 @@
"Jenssegers\\Eloquent": "src/" "Jenssegers\\Eloquent": "src/"
} }
}, },
"autoload-dev": {
"classmap": [
"tests/TestCase.php",
"tests/models",
"tests/seeds"
]
},
"suggest": { "suggest": {
"jenssegers/mongodb-session": "Add MongoDB session support to Laravel-MongoDB", "jenssegers/mongodb-session": "Add MongoDB session support to Laravel-MongoDB",
"jenssegers/mongodb-sentry": "Add Sentry support to Laravel-MongoDB" "jenssegers/mongodb-sentry": "Add Sentry support to Laravel-MongoDB"
......
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false" <phpunit backupGlobals="false"
backupStaticAttributes="false" backupStaticAttributes="false"
bootstrap="tests/bootstrap.php" bootstrap="vendor/autoload.php"
colors="true" colors="true"
convertErrorsToExceptions="true" convertErrorsToExceptions="true"
convertNoticesToExceptions="true" convertNoticesToExceptions="true"
......
...@@ -14,12 +14,14 @@ class PasswordResetServiceProvider extends \Illuminate\Auth\Passwords\PasswordRe ...@@ -14,12 +14,14 @@ class PasswordResetServiceProvider extends \Illuminate\Auth\Passwords\PasswordRe
$this->app->singleton('auth.password.tokens', function($app) $this->app->singleton('auth.password.tokens', function($app)
{ {
$connection = $app['db']->connection(); $connection = $app['db']->connection();
// The database token repository is an implementation of the token repository // The database token repository is an implementation of the token repository
// interface, and is responsible for the actual storing of auth tokens and // interface, and is responsible for the actual storing of auth tokens and
// their e-mail addresses. We will inject this table and hash key to it. // their e-mail addresses. We will inject this table and hash key to it.
$table = $app['config']['auth.password.table']; $table = $app['config']['auth.password.table'];
$key = $app['config']['app.key']; $key = $app['config']['app.key'];
$expire = $app['config']->get('auth.password.expire', 60); $expire = $app['config']->get('auth.password.expire', 60);
return new DbRepository($connection, $table, $key, $expire); return new DbRepository($connection, $table, $key, $expire);
}); });
} }
......
<?php
$loader = require 'vendor/autoload.php';
// Could not figure out how to add this to the loader
require 'TestCase.php';
// Add stuff to autoload
$loader->add('', 'tests/models');
$loader->add('', 'tests/seeds');
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment