[] (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