infomax / imxplatformphp.http
dev-master
2019-11-19 08:12 UTC
Requires
- php: ^5.4 || ^7.0
- codenamephp/platform.di: ^2
- infomax/imxplatformphp.core: dev-master
- psr/http-message: ^1
- zendframework/zend-diactoros: ^1
Requires (Dev)
- codenamephp/platform.test: ^1
- pdepend/pdepend: ^2
- phploc/phploc: ^3
- phpmd/phpmd: ^2
- sebastian/phpcpd: ^2
- squizlabs/php_codesniffer: ^2
- theseer/phpdox: ^0.8
This package is not auto-updated.
Last update: 2025-03-29 21:56:22 UTC
README
This is pretty much a meta package to provide standard definitions for the PSR-7 implementation. Currenty, zendframework/zend-diactoros is used as implementation. This doesn't really matter though, as we always code to interfaces, not to actual implementations. ;) #Installation Easiest way is via composer:
"require": { "infomax/imxplatformphp.http": "*" }
Then add the DefinitionsProvider to the ContainerBuilder:
$builder = new de\codenamephp\platform\di\ContainerBuilder(); ... $builder->addDefinitionsByProvider(new de\imxnet\imxplatformphp\http\DefinitionsProvider()); ... $container = $builder->build(); $container->get(\Psr\Http\Message\ServerRequestInterface::class);