You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-1Lines changed: 6 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -61,8 +61,13 @@ In PHPStorm I set the new server as the default and set the autoload option on t
61
61
62
62
Check to make sure the files ended up on your test VM where you expected them to be.
63
63
64
-
Edit the configuration options in app/config.php to match where you put everything.
64
+
Rename the directory src/YourName/YourProject to be your name or your organizations name for your namespace root followed by the name of this project. This may feel like a lot of directories but it keeps it PSR-0 complient for when you want to package your project or use it with another PSR-0 compliant autoloader.
65
65
66
+
Then replace all the instances of YourName/YourProject in the template with the new values... what can I say the result won't have any magic since these are the example classes for you to edit, not something in the framework namespace.
67
+
68
+
Edit the configuration options in public_html/config.php to match where you put everything.
69
+
70
+
You should have a working hello world example.
66
71
67
72
## Unit Testing
68
73
In general you just put tests in the testing directory with the same structure as the classes you are testing in the classes directory. The environment is Testing and so the associated configuration and dependency injection classes will be loaded.
0 commit comments