xujiajun / tast-symfony
There is no license information available for the latest version (dev-master) of this package.
a PHP framework based on Symfony Components, Sexy and Powerful
dev-master
2015-12-04 10:08 UTC
Requires
- doctrine/doctrine-bundle: ^1.5
- doctrine/doctrine-migrations-bundle: ^1.1
- sensio/framework-extra-bundle: ^3.0
- sensio/generator-bundle: ^2.5
- symfony/monolog-bundle: ^2.7
- symfony/psr-http-message-bridge: ^0.2.0
- symfony/symfony: ^2.7
- vlucas/phpdotenv: ^2.0
- zendframework/zend-diactoros: ^1.1
This package is not auto-updated.
Last update: 2024-11-09 18:59:27 UTC
README
a PHP framework based the Symfony components, Sexy and Powerful.
##Foreword
继承symfony2的优秀思想及做法,比如bundle机制、组件化等,组建一个更简单好用的全栈框架.
Features(不定时更新)
- symfony style
- M(Service/Dao)VC 架构
- 基于composer管理
- Twig引擎
- console 命令行工具
- Annotations
- Debug
- Doctrine DBAL
- EventDispatcher
- More
##Requirements
PHP5.4+
Usage
step1:
git clone https://github.com/tastphp/tast-symfony
step2:
copy 一份.env.example,重命名为.env
step4:
//config/db.yml
//配置数据库
doctrine:
dbal:
driver: pdo_mysql
dbname: symfony-demo
user: root
password: 123
charset: UTF8
server_version: 5.6
step5:
配置你的web server
or
直接 cd web & php -S 127.0.0.1:9000,访问http://127.0.0.1:9000,its runing!