Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/eylmz/php-mvc
https://github.com/eylmz/php-mvc
middleware mvc php router
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/eylmz/php-mvc
- Owner: eylmz
- Created: 2016-03-14T11:35:58.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-12-04T10:56:14.000Z (about 7 years ago)
- Last Synced: 2023-08-21T10:13:21.591Z (over 1 year ago)
- Topics: middleware, mvc, php, router
- Language: PHP
- Homepage: http://emre.pw
- Size: 522 KB
- Stars: 7
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# PHP-MVC
PHP-MVC, basit ve küçük çapta olan projeler için bir php web çatısıdır. SEO uyumlu linkleri destekler.#### Sürüm : 0.0.3
## Özellikler
- MVC tasarım deseni yapısında.
- Basit ve kullanımı kolay.
- Kolay ve hızlıca rotalandırma.
- Veritabanı işlemleri için, [Medoo](http://medoo.in/).
- Tasarım moturu için, [Edge](https://github.com/ventoviro/windwalker-edge)## Kurulum
#### Composer
```
composer create-project eylmz/wd-mvc wd-mvc
```
## Dizin Yapısı
```
PHP-MVC
| .htaccess
| index.php
|
+---App
| | .htaccess
| | Router.php
| |
| +---Config
| | Config.php
| | Database.php
| | PrettyUrls.php
| |
| +---Controllers
| | | HomeController.php
| | |
| | \---Admin
| | AdminHomeController.php
| |
| +---Models
| | TestModel.php
| | YeniModel.php
| |
| \---Views
| | index.php
| | test.edge.php
| |
| \---AdminViews
| index.php
|
+---Public
| index.html
|
+---System
| | .htaccess
| |
| +---Core
| | App.php
| | Autoload.php
| | Controller.php
| | Model.php
| | Route.php
| | Router.php
| |
| +---Helpers
| | Session.php
| | Template.php
| |
| \---Plugins
Setting.php
```