All Projects → diiyw → Thinker

diiyw / Thinker

更自由的PHP框架,使用Composer进行包管理

Projects that are alternatives of or similar to Thinker

Bingo-Framework
MVC framework for PHP
Stars: ✭ 15 (+50%)
Mutual labels:  php-framework
Symlex
A lean framework stack for agile Web development based on Symfony and Vuetify
Stars: ✭ 278 (+2680%)
Mutual labels:  php-framework
Imi
imi 是基于 Swoole 的 PHP 协程开发框架,它支持 Http、Http2、WebSocket、TCP、UDP、MQTT 等主流协议的服务开发,特别适合互联网微服务、即时通讯聊天im、物联网等场景!。QQ群:17916227
Stars: ✭ 680 (+6700%)
Mutual labels:  php-framework
cloudnative-hyperf
A cloud native hyperf skeleton, featuring kubernetes
Stars: ✭ 36 (+260%)
Mutual labels:  php-framework
miniPHP
A small, simple PHP MVC framework skeleton that encapsulates a lot of features surrounded with powerful security layers.
Stars: ✭ 147 (+1370%)
Mutual labels:  php-framework
Medoo
The lightweight PHP database framework to accelerate the development.
Stars: ✭ 4,463 (+44530%)
Mutual labels:  php-framework
leafMVC
MVC "Framework" created from Leaf PHP Framework
Stars: ✭ 25 (+150%)
Mutual labels:  php-framework
Easy Php
A Faster Lightweight Full-Stack PHP Framework 🚀
Stars: ✭ 754 (+7440%)
Mutual labels:  php-framework
Php Security Check List
PHP Security Check List [ EN ] 🌋 ☣️
Stars: ✭ 262 (+2520%)
Mutual labels:  php-framework
Prestashop
PrestaShop is an Open Source e-commerce platform, committed to providing the best shopping cart experience for both merchants and customers.
Stars: ✭ 6,192 (+61820%)
Mutual labels:  php-framework
framework
PHP Rapid Application Development Framework
Stars: ✭ 237 (+2270%)
Mutual labels:  php-framework
PHPFlask
🍶 Flask for PHP
Stars: ✭ 15 (+50%)
Mutual labels:  php-framework
Yaf
Fast php framework written in c, built in php extension
Stars: ✭ 4,446 (+44360%)
Mutual labels:  php-framework
yii2-material-theme
Material Theme for Yii2
Stars: ✭ 15 (+50%)
Mutual labels:  php-framework
Symfony
The Symfony PHP framework
Stars: ✭ 26,220 (+262100%)
Mutual labels:  php-framework
startmvc
超轻量php框架 lightweight php framework
Stars: ✭ 25 (+150%)
Mutual labels:  php-framework
Koseven
Koseven a Kohana fork compatible with PHP7
Stars: ✭ 332 (+3220%)
Mutual labels:  php-framework
Blink
A high performance web framework and application server in PHP.
Stars: ✭ 837 (+8270%)
Mutual labels:  php-framework
Awesome Php
A curated list of amazingly awesome PHP libraries, resources and shiny things.
Stars: ✭ 26,032 (+260220%)
Mutual labels:  php-framework
Yii
Yii PHP Framework 1.1.x
Stars: ✭ 4,840 (+48300%)
Mutual labels:  php-framework

Thinker

环境要求

  • php >= 7.0
  • composer > 1.4

安裝

git clone https://github.com/diiyw/thinker.git
# cd thinker
# composer install

目录结构

.
├── app
│   ├── composer.json
│   ├── composer.lock
│   ├── database
│   │   ├── migrations
│   │   ├── phinxConfig.php
│   │   └── seeds
│   ├── modules
│   │   └── home
│   │       ├── controller
│   │       │   ├── Index.php
│   │       │   └── IndexFilter.php
│   │       └── HomeConst.php
│   └── plugins
│       └── thinker
│           ├── Session.php
│           └── Whoops.php
├── README.md
├── views
│   └── default
│       ├── common
│       │   └── footer.phtml
│       └── home
│           └── index.phtml
└── www
    ├── cache
    │   └── default
    │       ├── common
    │       │   └── footer.phtml
    │       └── home
    │           └── index.phtml
    ├── index.php
    └── logs
        └── sys.log

快速创建模块

# cd app/module
# ../vendor/bin/thinker create

按照提示即可一步创建

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].