https://github.com/geggleto/course-1
Introduction to Slim PHP
https://github.com/geggleto/course-1
course micro-framework php slim tutorial
Last synced: about 1 year ago
JSON representation
Introduction to Slim PHP
- Host: GitHub
- URL: https://github.com/geggleto/course-1
- Owner: geggleto
- License: mit
- Created: 2017-07-12T02:46:47.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-13T16:45:39.000Z (over 8 years ago)
- Last Synced: 2025-01-14T10:14:42.021Z (about 1 year ago)
- Topics: course, micro-framework, php, slim, tutorial
- Language: PHP
- Homepage:
- Size: 14.6 KB
- Stars: 2
- Watchers: 4
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Slim Framework Introduction
### 1. Installation
- `git clone `
- `composer install`
### 2. Configuration
- Configuration is in `config/container.php`
### 3. Write some code!!
- New controllers should go in `src/Http`
### 4. Unit Tests
- Every controller should have a unit test in `tests/Http`
### 5. Run Things
- You can use `composer run` to run the PHP Built-in webserver
- You can use `composer run:tests` to run PHP Unit!