[] (https://scrutinizer-ci.com/g/xsanisty/SilexStarter/build-status/develop) [] (https://scrutinizer-ci.com/g/xsanisty/SilexStarter/?branch=develop) [ ](https://scrutinizer-ci.com/g/xsanisty/SilexStarter/?branch=develop)[] (https://insight.sensiolabs.com/projects/a30a66f9-8110-40c5-8a35-f3c1697dde55)
SilexStarter 是一个构建在 Silex 框架、Laravel 的 Eloquent、Cartalyst Sentry 以及其他一些第三方和内置组件之上的入门应用程序。 SilexStarter 旨在帮助更快地构建简单的应用程序,它采用 MVC 和模块化方法构建,并附带一些基本的管理模块,包括用户管理器和模块管理器。
目前,可安装的分支只有开发分支,您可以使用以下命令轻松使用composer安装它
composer create-project xsanisty/silexstarter target_dir dev-develop -s dev
一旦composer安装完成,您可以使用以下命令初始化应用程序
$cd target_dir
$./xpress app:init
模块可以直接在app/modules
目录中开发,并在自己的命名空间上创建模块或将其构建为单独的 Composer 包,可以通过在app/config/modules.php
中注册来启用或禁用模块
file : app/routes.php
路由配置可以像普通的 Silex 路由一样创建,或者使用类似于 Laravel 路由的语法的路由构建器。
Silex 布线风格
/* the application instance is available as $app in context of route.php */
$ app -> get ( ' /page ' , function (){
return ' I am in a page ' ;
});
$ app -> post ( ' /save ' , function (){
return ' Ok, all data is saved! ' ;
});
/* grouping */
$ app -> group ( ' prefix ' , function () use ( $ app ) {
$ app -> group ( ' page ' , function () use ( $ app ) {
$ app -> get ( ' index ' , function (){
return ' I am in prefix/page/index ' ;
});
});
});
/* resourceful controller */
$ app -> resource ( ' prefix ' , ' SomeController ' );
/* route controller */
$ app -> controller ( ' prefix ' , ' SomeController ' );
Laravel 路由风格
/* route can be built using the Route static proxy */
Route:: get ( ' /page ' , function (){
return ' I am in a page ' ;
});
Route:: post ( ' /save ' , function (){
return ' Ok, all data is saved! ' ;
});
/* grouping */
Route:: group ( ' prefix ' , function () {
Route:: group ( ' page ' , function () {
Route:: get ( ' index ' , function (){
return ' I am in prefix/page/index ' ;
});
});
});
/* resourceful controller */
Route:: resource ( ' prefix ' , ' SomeController ' );
/* route controller */
Route:: controller ( ' prefix ' , ' SomeController ' );
file: app/controllers/*
控制器基本上可以是驻留在控制器文件夹中的任何类,它将在启用时注册为服务,并在需要时正确实例化,并注入所有依赖项。
假设我们有PostRepository
和CommentRepository
,我们应该先注册它,然后才能将其正确注入到控制器中。
file: app/services/RepositoryServiceProvider.php
<?php
use Silex Application ;
use Silex ServiceProviderInterface ;
class RepositoryServiceProvider implements ServiceProviderInterface
{
public function register( Application $ app )
{
$ app [ ' PostRepository ' ] = $ app ->share( function ( Application $ app ) {
return new PostRepository
});
$ app [ ' CommentRepository ' ] = $ app ->share( function ( Application $ app ) {
return new PostRepository
});
}
public function boot ( Application $ app )
{
}
}
file: app/config/services.php
<?php
return [
' common ' => [
' RepositoryServiceProvider ' ,
]
]
file: app/controllers/PostController.php
<?php
class PostController{
protected $ postRepo ;
protected $ commentRepo ;
public function __construct ( PostRepository $ postRepo , CommentRepository $ commentRepo )
{
$ this -> postRepo = $ postRepo ;
$ this -> commentRepo = $ commentRepo ;
}
public function index (){
return Response:: view ( ' post/index ' , $ this -> postRepo -> all ());
}
}
现在,我们应该能够创建到该控制器的路由映射
Route:: get ( ' /post ' , ' PostController:index ' );
file: app/models/*
SilexStarter 使用 Eloquent ORM 作为数据库抽象层,因此您可以扩展它来创建模型类 Jeyac。数据库的配置可以在app/config/database.php
中找到
<?php
class Post extends Model{
protected $ table = ' posts ' ;
public function comments (){
return $ this -> hasMany ( ' Comment ' );
}
}
file: app/views/*
file: app/middlewares.php
file: src/Providers/*
file: app/modules/*
file: app/config/modules.php
file: app/modules/**/ModuleProvider.php