Central repository for all contact information gathered from various apps.
- PHP >= 5.6.4
- OpenSSL PHP Extension
- PDO PHP Extension
- Mbstring PHP Extension
- Tokenizer PHP Extension
- XML PHP Extension
- A supported relational database and corresponding PHP extension
- Composer
-
(Optionally) Fork this repository
-
Clone the repository locally
-
Install dependencies with
composer install
-
Copy
.env.example
to.env
and modify its contents to reflect your local environment. -
Run database migrations. If you want to include seed data, add a
--seed
flag.php artisan migrate
-
Configure a web server, such as the built-in PHP web server, to use the
public
directory as the document root.php -S localhost:8080 -t public
Or use Laravel Valet
-
Run tests with
./vendor/bin/phpunit
.