1) install composer:
http://magento2-tuts.blogspot.de/2016/08/ubuntu-install-composer.html
2) create 2 classes in 2 folders.
- create a folder named "myproject"
- in this folder create a folder "app" and a folder "library"
- so that you have this structure:
--myproject
|__app
|__library
|__Calculator.php
In the app/library folder create a php Class "Calculator.php"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: root | |
* Date: 04.08.16 | |
* Time: 08:31 | |
*/ | |
class Calculator | |
{ | |
public function add($summant1, $summant2) | |
{ | |
return $summant1 + $summant2; | |
} | |
} |
create autoloader
- in the "myproject" folder create a file "composer.json" with follwing content
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"autoload": | |
{ | |
"classmap":[ | |
"app/library" | |
] | |
} | |
} |
Switch to your terminal to the folder, where your composer.json is stored. type:
php composer install
After that a "vendor" folder is generated with the autoloading files.
Every Classes which are stored in the classmap ("app/library") will be automaticly added to the autoloading classmap.
Create a file "index.php" in folder "myproject" and add folling content,:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: root | |
* Date: 04.08.16 | |
* Time: 09:55 | |
*/ | |
require "vendor/autoload.php"; | |
$calculator = new Calculator(); | |
echo PHP_EOL.$calculator->add(2,2).PHP_EOL; |
Switch to terminal and type:
php index.php
this will output the result of 2+2 in yout terminal. You see the class Calculator gets automaticly loaded.
Now lets add a new folder "models" to the classmap
- create a folder named "models" in the folder "myproject"
- create a php class "User.php" in that folder
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Created by PhpStorm. | |
* User: root | |
* Date: 04.08.16 | |
* Time: 09:08 | |
*/ | |
class User | |
{ | |
} |
- open composer.json and add "app/models" to the classmap, so that it looks like that:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"autoload": | |
{ | |
"classmap": | |
[ | |
"app/library", | |
"app/models" | |
] | |
} | |
} |
- switch back to your terminal in the folder where composer.json is stored and type:
php composer dump-autoload
If you open vendor/autoload_classmap.php you will see the new addition of the Usermodel.
Thats it.
In one of the next tutorials, PSR 0 and PSR 4 will be explained.
Keine Kommentare:
Kommentar veröffentlichen