@@ -174,7 +174,7 @@ $builder->useAutomaticPersistedQueries($cache, new DateInterval('PT1H'));
174
174
175
175
In this example, we will focus on getting a working version of GraphQLite using:
176
176
177
- - [ Zend Stratigility] ( https://docs.zendframework.com/zend -stratigility/ ) as a PSR-15 server
177
+ - [ Laminas Stratigility] ( https://docs.laminas.dev/laminas -stratigility/ ) as a PSR-15 server
178
178
- ` mouf/picotainer ` (a micro-container) for the PSR-11 container
179
179
- ` symfony/cache ` for the PSR-16 cache
180
180
@@ -189,9 +189,9 @@ The choice of the libraries is really up to you. You can adapt it based on your
189
189
},
190
190
"require" : {
191
191
"thecodingmachine/graphqlite" : " ^4" ,
192
- "zendframework/zend -diactoros" : " ^2" ,
193
- "zendframework/zend -stratigility" : " ^3" ,
194
- "zendframework/zend -httphandlerrunner" : " ^1.0 " ,
192
+ "laminas/laminas -diactoros" : " ^2" ,
193
+ "laminas/laminas -stratigility" : " ^3" ,
194
+ "laminas/laminas -httphandlerrunner" : " ^2 " ,
195
195
"mouf/picotainer" : " ^1.1" ,
196
196
"symfony/cache" : " ^4.2"
197
197
},
@@ -206,11 +206,11 @@ The choice of the libraries is really up to you. You can adapt it based on your
206
206
use Laminas\Diactoros\Response;
207
207
use Laminas\Diactoros\ServerRequest;
208
208
use Laminas\Diactoros\ServerRequestFactory;
209
- use Zend \HttpHandlerRunner\Emitter\SapiStreamEmitter;
210
- use Zend \Stratigility\Middleware\ErrorResponseGenerator;
211
- use Zend \Stratigility\MiddlewarePipe;
209
+ use Laminas \HttpHandlerRunner\Emitter\SapiStreamEmitter;
210
+ use Laminas \Stratigility\Middleware\ErrorResponseGenerator;
211
+ use Laminas \Stratigility\MiddlewarePipe;
212
212
use Laminas\Diactoros\Server;
213
- use Zend \HttpHandlerRunner\RequestHandlerRunner;
213
+ use Laminas \HttpHandlerRunner\RequestHandlerRunner;
214
214
215
215
require_once __DIR__ . '/vendor/autoload.php';
216
216
@@ -232,7 +232,7 @@ $runner = new RequestHandlerRunner(
232
232
$runner->run();
233
233
```
234
234
235
- Here we are initializing a Zend ` RequestHandler ` (it receives requests) and we pass it to a Zend Stratigility ` MiddlewarePipe ` .
235
+ Here we are initializing a Laminas ` RequestHandler ` (it receives requests) and we pass it to a Laminas Stratigility ` MiddlewarePipe ` .
236
236
This ` MiddlewarePipe ` comes from the container declared in the ` config/container.php ` file:
237
237
238
238
``` php title="config/container.php"
@@ -245,7 +245,7 @@ use Psr\SimpleCache\CacheInterface;
245
245
use Symfony\Component\Cache\Simple\ApcuCache;
246
246
use TheCodingMachine\GraphQLite\Http\Psr15GraphQLMiddlewareBuilder;
247
247
use TheCodingMachine\GraphQLite\SchemaFactory;
248
- use Zend \Stratigility\MiddlewarePipe;
248
+ use Laminas \Stratigility\MiddlewarePipe;
249
249
250
250
// Picotainer is a minimalist PSR-11 container.
251
251
return new Picotainer([
0 commit comments