[] (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
ディレクトリ内で直接開発し、独自の名前空間にモジュールを作成するか、別のコンポーザー パッケージとして構築できます。モジュールは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 を使用するため、これを拡張してモデル classJeyac を作成できます。データベースの構成は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