├── .ci ├── vsenv.bat └── win-ci-tools.psm1 ├── .dockerignore ├── .editorconfig ├── .gitattributes ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── config.m4 ├── config.w32 ├── flake.lock ├── flake.nix ├── nix └── derivation.nix ├── package.xml ├── php_psr.c ├── php_psr.h ├── psr_cache.c ├── psr_cache.h ├── psr_container.c ├── psr_container.h ├── psr_event_dispatcher.c ├── psr_event_dispatcher.h ├── psr_http_client.c ├── psr_http_client.h ├── psr_http_factory.c ├── psr_http_factory.h ├── psr_http_message.c ├── psr_http_message.h ├── psr_http_server_handler.c ├── psr_http_server_handler.h ├── psr_http_server_middleware.c ├── psr_http_server_middleware.h ├── psr_link.c ├── psr_link.h ├── psr_log.c ├── psr_log.h ├── psr_private.h ├── psr_simple_cache.c ├── psr_simple_cache.h └── tests ├── PsrCacheCacheException.phpt ├── PsrCacheCacheItemInterface.phpt ├── PsrCacheCacheItemPoolInterface.phpt ├── PsrCacheInvalidArgumentException.phpt ├── PsrContainerContainerExceptionInterface.phpt ├── PsrContainerContainerInterface.phpt ├── PsrContainerNotFoundExceptionInterface.phpt ├── PsrEventDispatcherEventDispatcherInterface.phpt ├── PsrEventDispatcherListenerProviderInterface.phpt ├── PsrEventDispatcherStoppableEventInterface.phpt ├── PsrHttpClientClientExceptionInterface.phpt ├── PsrHttpClientClientInterface.phpt ├── PsrHttpClientNetworkExceptionInterface.phpt ├── PsrHttpClientRequestExceptionInterface.phpt ├── PsrHttpMessageMessageInterface.phpt ├── PsrHttpMessageRequestFactoryInterface.phpt ├── PsrHttpMessageRequestInterface.phpt ├── PsrHttpMessageResponseFactoryInterface.phpt ├── PsrHttpMessageResponseInterface.phpt ├── PsrHttpMessageServerRequestFactoryInterface.phpt ├── PsrHttpMessageServerRequestInterface.phpt ├── PsrHttpMessageStreamFactoryInterface.phpt ├── PsrHttpMessageStreamInterface.phpt ├── PsrHttpMessageUploadedFileFactoryInterface.phpt ├── PsrHttpMessageUploadedFileInterface.phpt ├── PsrHttpMessageUriFactoryInterface.phpt ├── PsrHttpMessageUriInterface.phpt ├── PsrHttpServerMiddlewareInterface.phpt ├── PsrHttpServerRequestHandlerInterface.phpt ├── PsrLinkEvolvableLinkInterface.phpt ├── PsrLinkEvolvableLinkProviderInterface.phpt ├── PsrLinkLinkInterface.phpt ├── PsrLinkLinkProviderInterface.phpt ├── PsrLogAbstractLogger.phpt ├── PsrLogAbstractLogger_construct.phpt ├── PsrLogInvalidArgumentException.phpt ├── PsrLogLevel.phpt ├── PsrLogLoggerAwareInterface.phpt ├── PsrLogLoggerAwareTrait.phpt ├── PsrLogLoggerInterface.phpt ├── PsrLogLoggerTrait.phpt ├── PsrLogNullLogger.phpt ├── PsrSimpleCacheCacheException.phpt ├── PsrSimpleCacheCacheInterface.phpt ├── PsrSimpleCacheInvalidArgumentException.phpt ├── SampleCacheItem.inc ├── SampleCacheItemPool.inc ├── SampleClient.inc ├── SampleEventDispatcher.inc ├── SampleListenerProvider.inc ├── SampleLogger.inc ├── SampleLogger2.inc ├── SampleLoggerAware.inc ├── SampleMessage.inc ├── SampleMiddleware.inc ├── SampleRequest.inc ├── SampleRequestFactory.inc ├── SampleRequestHandler.inc ├── SampleResponse.inc ├── SampleResponseFactory.inc ├── SampleServerRequest.inc ├── SampleServerRequestFactory.inc ├── SampleStoppableEvent.inc ├── SampleStream.inc ├── SampleStreamFactory.inc ├── SampleUploadedFile.inc ├── SampleUploadedFileFactory.inc ├── SampleUri.inc ├── SampleUriFactory.inc ├── gh20.phpt ├── gh78_php7.phpt ├── gh78_php8.phpt ├── phpinfo.phpt ├── phpinfo_lt_php72.phpt ├── skip.inc └── skip_lt_php72.inc /.ci/vsenv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.ci/vsenv.bat -------------------------------------------------------------------------------- /.ci/win-ci-tools.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.ci/win-ci-tools.psm1 -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.dockerignore -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/config.w32 -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/flake.nix -------------------------------------------------------------------------------- /nix/derivation.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/nix/derivation.nix -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/package.xml -------------------------------------------------------------------------------- /php_psr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/php_psr.c -------------------------------------------------------------------------------- /php_psr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/php_psr.h -------------------------------------------------------------------------------- /psr_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_cache.c -------------------------------------------------------------------------------- /psr_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_cache.h -------------------------------------------------------------------------------- /psr_container.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_container.c -------------------------------------------------------------------------------- /psr_container.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_container.h -------------------------------------------------------------------------------- /psr_event_dispatcher.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_event_dispatcher.c -------------------------------------------------------------------------------- /psr_event_dispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_event_dispatcher.h -------------------------------------------------------------------------------- /psr_http_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_client.c -------------------------------------------------------------------------------- /psr_http_client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_client.h -------------------------------------------------------------------------------- /psr_http_factory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_factory.c -------------------------------------------------------------------------------- /psr_http_factory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_factory.h -------------------------------------------------------------------------------- /psr_http_message.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_message.c -------------------------------------------------------------------------------- /psr_http_message.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_message.h -------------------------------------------------------------------------------- /psr_http_server_handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_server_handler.c -------------------------------------------------------------------------------- /psr_http_server_handler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_server_handler.h -------------------------------------------------------------------------------- /psr_http_server_middleware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_server_middleware.c -------------------------------------------------------------------------------- /psr_http_server_middleware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_http_server_middleware.h -------------------------------------------------------------------------------- /psr_link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_link.c -------------------------------------------------------------------------------- /psr_link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_link.h -------------------------------------------------------------------------------- /psr_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_log.c -------------------------------------------------------------------------------- /psr_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_log.h -------------------------------------------------------------------------------- /psr_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_private.h -------------------------------------------------------------------------------- /psr_simple_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_simple_cache.c -------------------------------------------------------------------------------- /psr_simple_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/psr_simple_cache.h -------------------------------------------------------------------------------- /tests/PsrCacheCacheException.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrCacheCacheException.phpt -------------------------------------------------------------------------------- /tests/PsrCacheCacheItemInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrCacheCacheItemInterface.phpt -------------------------------------------------------------------------------- /tests/PsrCacheCacheItemPoolInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrCacheCacheItemPoolInterface.phpt -------------------------------------------------------------------------------- /tests/PsrCacheInvalidArgumentException.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrCacheInvalidArgumentException.phpt -------------------------------------------------------------------------------- /tests/PsrContainerContainerExceptionInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrContainerContainerExceptionInterface.phpt -------------------------------------------------------------------------------- /tests/PsrContainerContainerInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrContainerContainerInterface.phpt -------------------------------------------------------------------------------- /tests/PsrContainerNotFoundExceptionInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrContainerNotFoundExceptionInterface.phpt -------------------------------------------------------------------------------- /tests/PsrEventDispatcherEventDispatcherInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrEventDispatcherEventDispatcherInterface.phpt -------------------------------------------------------------------------------- /tests/PsrEventDispatcherListenerProviderInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrEventDispatcherListenerProviderInterface.phpt -------------------------------------------------------------------------------- /tests/PsrEventDispatcherStoppableEventInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrEventDispatcherStoppableEventInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpClientClientExceptionInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpClientClientExceptionInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpClientClientInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpClientClientInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpClientNetworkExceptionInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpClientNetworkExceptionInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpClientRequestExceptionInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpClientRequestExceptionInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageMessageInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageMessageInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageRequestFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageRequestFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageRequestInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageRequestInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageResponseFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageResponseFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageResponseInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageResponseInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageServerRequestFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageServerRequestFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageServerRequestInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageServerRequestInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageStreamFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageStreamFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageStreamInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageStreamInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageUploadedFileFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageUploadedFileFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageUploadedFileInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageUploadedFileInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageUriFactoryInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageUriFactoryInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpMessageUriInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpMessageUriInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpServerMiddlewareInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpServerMiddlewareInterface.phpt -------------------------------------------------------------------------------- /tests/PsrHttpServerRequestHandlerInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrHttpServerRequestHandlerInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLinkEvolvableLinkInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLinkEvolvableLinkInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLinkEvolvableLinkProviderInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLinkEvolvableLinkProviderInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLinkLinkInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLinkLinkInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLinkLinkProviderInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLinkLinkProviderInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLogAbstractLogger.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogAbstractLogger.phpt -------------------------------------------------------------------------------- /tests/PsrLogAbstractLogger_construct.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogAbstractLogger_construct.phpt -------------------------------------------------------------------------------- /tests/PsrLogInvalidArgumentException.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogInvalidArgumentException.phpt -------------------------------------------------------------------------------- /tests/PsrLogLevel.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogLevel.phpt -------------------------------------------------------------------------------- /tests/PsrLogLoggerAwareInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogLoggerAwareInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLogLoggerAwareTrait.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogLoggerAwareTrait.phpt -------------------------------------------------------------------------------- /tests/PsrLogLoggerInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogLoggerInterface.phpt -------------------------------------------------------------------------------- /tests/PsrLogLoggerTrait.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogLoggerTrait.phpt -------------------------------------------------------------------------------- /tests/PsrLogNullLogger.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrLogNullLogger.phpt -------------------------------------------------------------------------------- /tests/PsrSimpleCacheCacheException.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrSimpleCacheCacheException.phpt -------------------------------------------------------------------------------- /tests/PsrSimpleCacheCacheInterface.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrSimpleCacheCacheInterface.phpt -------------------------------------------------------------------------------- /tests/PsrSimpleCacheInvalidArgumentException.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/PsrSimpleCacheInvalidArgumentException.phpt -------------------------------------------------------------------------------- /tests/SampleCacheItem.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleCacheItem.inc -------------------------------------------------------------------------------- /tests/SampleCacheItemPool.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleCacheItemPool.inc -------------------------------------------------------------------------------- /tests/SampleClient.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleClient.inc -------------------------------------------------------------------------------- /tests/SampleEventDispatcher.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleEventDispatcher.inc -------------------------------------------------------------------------------- /tests/SampleListenerProvider.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleListenerProvider.inc -------------------------------------------------------------------------------- /tests/SampleLogger.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleLogger.inc -------------------------------------------------------------------------------- /tests/SampleLogger2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleLogger2.inc -------------------------------------------------------------------------------- /tests/SampleLoggerAware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleLoggerAware.inc -------------------------------------------------------------------------------- /tests/SampleMessage.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleMessage.inc -------------------------------------------------------------------------------- /tests/SampleMiddleware.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleMiddleware.inc -------------------------------------------------------------------------------- /tests/SampleRequest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleRequest.inc -------------------------------------------------------------------------------- /tests/SampleRequestFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleRequestFactory.inc -------------------------------------------------------------------------------- /tests/SampleRequestHandler.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleRequestHandler.inc -------------------------------------------------------------------------------- /tests/SampleResponse.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleResponse.inc -------------------------------------------------------------------------------- /tests/SampleResponseFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleResponseFactory.inc -------------------------------------------------------------------------------- /tests/SampleServerRequest.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleServerRequest.inc -------------------------------------------------------------------------------- /tests/SampleServerRequestFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleServerRequestFactory.inc -------------------------------------------------------------------------------- /tests/SampleStoppableEvent.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleStoppableEvent.inc -------------------------------------------------------------------------------- /tests/SampleStream.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleStream.inc -------------------------------------------------------------------------------- /tests/SampleStreamFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleStreamFactory.inc -------------------------------------------------------------------------------- /tests/SampleUploadedFile.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleUploadedFile.inc -------------------------------------------------------------------------------- /tests/SampleUploadedFileFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleUploadedFileFactory.inc -------------------------------------------------------------------------------- /tests/SampleUri.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleUri.inc -------------------------------------------------------------------------------- /tests/SampleUriFactory.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/SampleUriFactory.inc -------------------------------------------------------------------------------- /tests/gh20.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/gh20.phpt -------------------------------------------------------------------------------- /tests/gh78_php7.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/gh78_php7.phpt -------------------------------------------------------------------------------- /tests/gh78_php8.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/gh78_php8.phpt -------------------------------------------------------------------------------- /tests/phpinfo.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/phpinfo.phpt -------------------------------------------------------------------------------- /tests/phpinfo_lt_php72.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/phpinfo_lt_php72.phpt -------------------------------------------------------------------------------- /tests/skip.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/skip.inc -------------------------------------------------------------------------------- /tests/skip_lt_php72.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbboehr/php-psr/HEAD/tests/skip_lt_php72.inc --------------------------------------------------------------------------------