Skip to content

Commit 2ddd8b9

Browse files
committed
merged branch bamarni/master (PR #24)
This PR was merged into the master branch. Commits ------- 799e963 updated composer autoload path Discussion ---------- updated composer autoload path
2 parents 91e46f6 + 799e963 commit 2ddd8b9

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

book/part04.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ reference in ``front.php``::
7575

7676
// example.com/web/front.php
7777

78-
require_once __DIR__.'/../vendor/.composer/autoload.php';
78+
require_once __DIR__.'/../vendor/autoload.php';
7979

8080
// ...
8181

@@ -155,7 +155,7 @@ With this knowledge in mind, let's write the new version of our framework::
155155

156156
// example.com/web/front.php
157157

158-
require_once __DIR__.'/../vendor/.composer/autoload.php';
158+
require_once __DIR__.'/../vendor/autoload.php';
159159

160160
use Symfony\Component\HttpFoundation\Request;
161161
use Symfony\Component\HttpFoundation\Response;

book/part05.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Here is the updated and improved version of our framework::
106106

107107
// example.com/web/front.php
108108

109-
require_once __DIR__.'/../vendor/.composer/autoload.php';
109+
require_once __DIR__.'/../vendor/autoload.php';
110110

111111
use Symfony\Component\HttpFoundation\Request;
112112
use Symfony\Component\HttpFoundation\Response;

book/part06.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ Let's conclude with the new version of our framework::
158158

159159
// example.com/web/front.php
160160

161-
require_once __DIR__.'/../vendor/.composer/autoload.php';
161+
require_once __DIR__.'/../vendor/autoload.php';
162162

163163
use Symfony\Component\HttpFoundation\Request;
164164
use Symfony\Component\HttpFoundation\Response;

book/part09.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ the registration of a listener for the ``response`` event::
136136

137137
// example.com/web/front.php
138138

139-
require_once __DIR__.'/../vendor/.composer/autoload.php';
139+
require_once __DIR__.'/../vendor/autoload.php';
140140

141141
// ...
142142

book/part11.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ And the new front controller::
4040

4141
// example.com/web/front.php
4242

43-
require_once __DIR__.'/../vendor/.composer/autoload.php';
43+
require_once __DIR__.'/../vendor/autoload.php';
4444

4545
use Symfony\Component\HttpFoundation\Request;
4646
use Symfony\Component\HttpFoundation\Response;

book/part12.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The front controller code would become more concise::
3838

3939
// example.com/web/front.php
4040

41-
require_once __DIR__.'/../vendor/.composer/autoload.php';
41+
require_once __DIR__.'/../vendor/autoload.php';
4242

4343
use Symfony\Component\HttpFoundation\Request;
4444

@@ -168,7 +168,7 @@ The front controller is now only about wiring everything together::
168168

169169
// example.com/web/front.php
170170

171-
require_once __DIR__.'/../vendor/.composer/autoload.php';
171+
require_once __DIR__.'/../vendor/autoload.php';
172172

173173
use Symfony\Component\HttpFoundation\Request;
174174

0 commit comments

Comments
 (0)