Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Feature/auth middleware (#3)
* geting started

* updated deps

* Finished auth template
  • Loading branch information
bpd01001 committed Apr 23, 2019
1 parent 81d264a commit 0eadda9
Show file tree
Hide file tree
Showing 14 changed files with 396 additions and 166 deletions.
4 changes: 4 additions & 0 deletions .env.example
@@ -0,0 +1,4 @@
DB_HOST=localhost
DB_NAME=employees
DB_USER=root
DB_PASS=root
1 change: 1 addition & 0 deletions .gitignore
@@ -1,3 +1,4 @@
/vendor/
/logs/*
!/logs/README.md
/.env
15 changes: 15 additions & 0 deletions README.md
@@ -1,3 +1,18 @@
# Simple MVC Example Project for Web III

## Getting Started

1. Fork this repo
2. Clone your version of the repo: `git clone <url>`
3. Install dependencies: `composer install`
4. Run the app: `composer run start`


## Contributing

1. Fork it
2. Create your feature branch (`git checkout -b feature/name-of-new-feature`)
3. Make your changes
4. Commit your changes (`git commit -am 'Added some feature'`)
5. Push to the branch (`git push origin feature/name-of-new-feature`)
6. Create new Pull Request
14 changes: 7 additions & 7 deletions composer.json
@@ -1,21 +1,21 @@
{
"name": "slim/slim-skeleton",
"description": "A Slim Framework skeleton application for rapid development",
"name": "bpd01001/web-three-mvc",
"description": "Sample MVC Infrastructure based on Slim",
"keywords": ["microframework", "rest", "router", "psr7"],
"homepage": "http://github.com/slimphp/Slim-Skeleton",
"homepage": "https://github.uconn.edu/bpd01001/web-three-mvc",
"license": "MIT",
"authors": [
{
"name": "Josh Lockhart",
"email": "info@joshlockhart.com",
"homepage": "http://www.joshlockhart.com/"
"name": "Brian Daley",
"email": "brian@uconn.edu"
}
],
"require": {
"php": ">=5.5.0",
"slim/slim": "^3.1",
"slim/php-view": "^2.0",
"monolog/monolog": "^1.17"
"monolog/monolog": "^1.17",
"vlucas/phpdotenv": "^3.3"
},
"require-dev": {
"phpunit/phpunit": ">=4.8 < 6.0"
Expand Down

0 comments on commit 0eadda9

Please sign in to comment.