Download the PHP package strangerwork/strangerwas without Composer

On this page you can find all versions of the php package strangerwork/strangerwas. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package strangerwas

StrangerPHP

StrangerPHPはPHPで動くWebFrameworkです.

Create new project

新しいプロジェクトを開始するには、下記のようにしてStrangerPHPをcloneしてください。 下記の例では、/home/someone/Project配下にプロジェクト名「stranger」でプロジェクトを作成します。 $> cd /home/someone/Project/ $> git clone https://github.com/satokadumasa/strangerphp stranger

データベースの作成

StrangerPHPはデータベースとしてMySQLを使用します。 データベース上にスキーマを作成し、スキーマにテーブルを作成してそこにデータの読み書きをするのです。 まず、データベース上にスキーマを作成しましょう。

最初にやることは、データベースの初期化です。初期化により、スキーマを生成します。 まず、データベース接続情報を記述したdatabase.config.phpを作成します。 というか、sampleをコピーします。このとき、すでにプロジェクトを作成した/home/someone/Project/ ディレクトリに いるものとします。

$> cd stranger $> cp config/database.config.sample.php config/development/ $> cp config/database.config.sample.php config/staging/ $> cp config/database.config.sample.php config/production/ $> cp config/database.config.sample.php config/test/

次にスキーマの生成です。以下の条件でスキーマを生成するものとします。

HOST:localhost Charset:utf8 user:root password:password スキーマ名:stranger

まず、先ほどコピーして作成したdatabase.config.phpを以下のように編集します。 $> vi config/[ENVIRONMENT]/database.config.php

$default_database = array( 'rdb' => 'mysql', 'host' => 'localhost', 'dbname' => 'mysql', 'charset' => 'utf8', 'username' => 'root', 'password' => 'password', );

この時点ではスキーマ名(dbname)を自分のプロジェクト用のスキーマ名には変更しないでください。 編集がおわったらdatabase.config.phpを保存して編集を終了してください。

次に下記のコマンドを実行してください。

$> php ./stranger.php migrate:create:schema localhost:utf8:root:password:stranger

これで、MySQL上にスキーマ名「stranger」でスキーマが作成されました。

次に、migration管理テーブルであるmigrationsをstrangerスキーマ上に作成します。 下記のコマンドを実行してください。

$> php ./stranger.php migrate:init

これで、スキーマ、migration管理テーブルが作成されてました。次に、再度database.config.php を編集してスキーマ名を変更します。

$> vi config/[ENVIRONMENT]/database.config.php

$default_database = array( 'rdb' => 'mysql', 'host' => 'localhost', 'dbname' => 'stranger', 'charset' => 'utf8', 'username' => 'root', 'password' => 'password', );

これで、スキーマstrangerにアクセスできるようになりました。

Create scaffold

StrangerPHPは軽量ではありますが、強力なフレームワークです。 その力の一つがscaffold機能です。 Ruby on Railsなどを使ったことのある方ならおなじみの機能ですね。 コマンド一発で、コントローラーからモデルから、migrationファイルからCRUD機能の実現に必要な 実装の骨組みを生成してくれる機能です。では、そのscaffold機能を使ってuser_infosテーブルに読み書き をしてviewに読み書きした内容を表示するUserInfoControllerとviewファイル一式、そしてuser_infosテーブル を作成するためのmigrationファイルを作成してみましょう。

生成する内容としては下記の通りです。 id:識別番号 first_name:名 last_name:姓 pref_id:都道府県ID city:市区町村名 address:町名・番地

下記のコマンドをプロジェクトルートディレクトリ/home/someone/Project/stranger/で実行してください。

$> php ./stranger.php -g scaffold user_infos \ first_name:string:64:false:: \ last_name:string:64:false:: \ pref_id:int:8:false:: \ city:string:32:false:: \ address:string:64:false:: \

言うまでもないかと思いますが 「\」は改行をしめすものではなく続きがあることを示す記号です。 実際には(「\」を抜いて)一行で入力してください。

すると、下記のファイルが出来上がります。

コントローラ /home/someone/Project/stranger/controllers/UserInfoController.php モデルクラス /home/someone/Project/stranger/models/UserInfo.php Viewテンプレート /home/someone/Project/stranger/views/UserInfo/index.tpl /home/someone/Project/stranger/views/UserInfo/create.tpl /home/someone/Project/stranger/views/UserInfo/edit.tpl /home/someone/Project/stranger/views/UserInfo/show.tpl Migrationファイル /home/someone/Project/stranger/db/migrate/20170531235959CreateTableUserInfo.php

これで、とりあえずuser_infosテーブルへの読み書きと読み込み結果の表示を行う機能の骨組みは出来上がりました。

Run Migration

スキーマstranger内をMySQLのクライアントソフトで覗き見るとわかるかと思いますが、 この時点ではまだmigration管理用のmigrationsテーブルしかありません。 Scaffoldで作った機能で読み書きする対象テーブルuser_infosを作成しないと機能は動きません。 テーブル作成のためには下記のコマンドを実行してください。

$> php ./stranger.php migrate

そうすると、user_infosテーブルが作成されます。

以上で、プロジェクト作成とScaffold、migration機能についての説明は終了です。

なお、StrangerPHPについてのサポートは随時受け付けております。 商用利用、業務プロジェクトでの利用についてはサポートは有料とさせていただいております。 それ以外、個人での非営利プロジェクトでの利用でのサポートをいたします。 お気軽に下記のメールアドレスまでお問い合わせください。

email: sato.kadumasa@gmail.com

StrangerPHP

Currently, only the following functions can be used.

  1. Scaffold You can create a controller, model, View template file.
  2. Generate controller You can create controller & method, View template file.
  3. Generate model class You can create model classes. A simple example of use is described below.
  4. Run migration

scaffold

By using the Scaffold function, you can create a controller, model, and view template with CRUD function at once.

ex) $> php ./stranger.php -g scaffold books name:string outline:text detail:text

generate controller

If you create only the controller, execute the stranger command as shown. The controller and the view template file are created.

ex) $> php ./stranger.php -g controller books index show create delete

generate model

If you create only the model class file, execute the stranger command as shown below.

ex) $> php ./stranger.php -g model books name:string outline:text detail:text

Migration

A migration file is created by Scaffold or model creation. You can create tables on the database using this migration file.

ex) $> php ./stranger.php migrate


All versions of strangerwas with dependencies

PHP Build Version
Package Version
Requires swiftmailer/swiftmailer Version @stable
mustangostang/spyc Version @stable
strangerwork/strangerfw Version 0.9.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package strangerwork/strangerwas contains the following files

Loading the files please wait ....