euromark 11 years ago
parent
commit
7586a20dc2
2 changed files with 7 additions and 6 deletions
  1. 4 0
      .gitattributes
  2. 3 6
      README.md

+ 4 - 0
.gitattributes

@@ -0,0 +1,4 @@
+# Define the line ending behavior of the different file extensions
+# Set default behaviour, in case users don't have core.autocrlf set.
+* text=auto
+* text eol=lf

+ 3 - 6
README.md

@@ -14,7 +14,7 @@ This cake3 branch only works for **CakePHP3.x** - please use the master branch f
 ## How to include
 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 `ROOT/plugins/Tools`, using Packagist/Composer:
 ```
 "require": {
 	"dereuromark/cakephp-tools": "dev-cake3"
@@ -26,10 +26,7 @@ and
 
 Details @ https://packagist.org/packages/dereuromark/cakephp-tools
 
-That's it. It should be up and running.
-
-## The basics
-This will load the plugin:
+This will load the plugin (within your boostrap file):
 ```php
 Plugin::load('Tools');
 ```
@@ -48,7 +45,7 @@ or
 
 ```php
 Plugin::loadAll(array(
-		'Tools' => array('bootstrap' => true
+		'Tools' => array('bootstrap' => true)
 ));
 ```