euromark 11 年 前
コミット
63b5cc572b
1 ファイル変更6 行追加6 行削除
  1. 6 6
      README.md

+ 6 - 6
README.md

@@ -11,17 +11,17 @@ This cake3 branch only works for **CakePHP3.x** - please use the master branch f
 ## How to include
 ## How to include
 Installing the Plugin is pretty much as with every other CakePHP Plugin.
 Installing the Plugin is pretty much as with every other CakePHP Plugin.
 
 
-Put the files in `APP/Plugin/Tools`, using packagist/composer:
+Put the files in `APP/Plugin/Tools`, using Packagist/Composer:
 ```
 ```
 "require": {
 "require": {
-	"dereuromark/tools-cakephp": "dev-cake3"
+	"dereuromark/cakephp-tools": "dev-cake3"
 }
 }
 ```
 ```
 and
 and
 
 
 	composer update
 	composer update
 
 
-Details @ https://packagist.org/packages/dereuromark/tools-cakephp
+Details @ https://packagist.org/packages/dereuromark/cakephp-tools
 
 
 That's it. It should be up and running.
 That's it. It should be up and running.
 
 
@@ -81,10 +81,10 @@ See CakePHP coding standards for details.
 Internally (method access), you don't use the vendor namespace. The plugin name suffices:
 Internally (method access), you don't use the vendor namespace. The plugin name suffices:
 ```php
 ```php
 // In a Table
 // In a Table
-$this->addBehavior('Tools.Slugged');
+$this->addBehavior('Tools.Slugged'); // Adding SluggedBehavior
 
 
-// In a controller
-public $helpers = array('Tools.Foo');
+// In a Controller
+public $helpers = array('Tools.Foo'); // Adding FooHelper
 ```
 ```
 
 
 ## Testing
 ## Testing