├── .gitignore ├── LICENSE ├── README.md ├── benchmark.sh ├── benchmarks ├── _functions.sh ├── avg_ms.php ├── hello_world.sh └── sum_ms.php ├── bin ├── show_comparison_table.php ├── show_fw_array.sh └── show_results_table.php ├── frameworks ├── AltoRouter │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── altorouter │ │ └── altorouter │ │ │ ├── AltoRouter.php │ │ │ ├── README.md │ │ │ └── composer.json │ │ ├── autoload.php │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json ├── FastRoute │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── nikic │ │ └── fast-route │ │ ├── .gitignore │ │ ├── .hhconfig │ │ ├── .travis.yml │ │ ├── FastRoute.hhi │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── phpunit.xml │ │ ├── psalm.xml │ │ ├── src │ │ ├── BadRouteException.php │ │ ├── DataGenerator.php │ │ ├── DataGenerator │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Dispatcher.php │ │ ├── Dispatcher │ │ │ ├── CharCountBased.php │ │ │ ├── GroupCountBased.php │ │ │ ├── GroupPosBased.php │ │ │ ├── MarkBased.php │ │ │ └── RegexBasedAbstract.php │ │ ├── Route.php │ │ ├── RouteCollector.php │ │ ├── RouteParser.php │ │ ├── RouteParser │ │ │ └── Std.php │ │ ├── bootstrap.php │ │ └── functions.php │ │ └── test │ │ ├── Dispatcher │ │ ├── CharCountBasedTest.php │ │ ├── DispatcherTest.php │ │ ├── GroupCountBasedTest.php │ │ ├── GroupPosBasedTest.php │ │ └── MarkBasedTest.php │ │ ├── HackTypechecker │ │ ├── HackTypecheckerTest.php │ │ └── fixtures │ │ │ ├── all_options.php │ │ │ ├── empty_options.php │ │ │ └── no_options.php │ │ ├── RouteCollectorTest.php │ │ ├── RouteParser │ │ └── StdTest.php │ │ └── bootstrap.php ├── Ham │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json ├── PHP-Router │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ ├── fig │ │ └── http-message-util │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── RequestMethodInterface.php │ │ │ └── StatusCodeInterface.php │ │ └── psr │ │ └── http-message │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ └── src │ │ ├── MessageInterface.php │ │ ├── RequestInterface.php │ │ ├── ResponseInterface.php │ │ ├── ServerRequestInterface.php │ │ ├── StreamInterface.php │ │ ├── UploadedFileInterface.php │ │ └── UriInterface.php ├── Slim-4 │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ ├── fig │ │ └── http-message-util │ │ │ ├── .gitignore │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── RequestMethodInterface.php │ │ │ └── StatusCodeInterface.php │ │ ├── nikic │ │ └── fast-route │ │ │ ├── .gitignore │ │ │ ├── .hhconfig │ │ │ ├── .travis.yml │ │ │ ├── FastRoute.hhi │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ ├── phpunit.xml │ │ │ ├── psalm.xml │ │ │ ├── src │ │ │ ├── BadRouteException.php │ │ │ ├── DataGenerator.php │ │ │ ├── DataGenerator │ │ │ │ ├── CharCountBased.php │ │ │ │ ├── GroupCountBased.php │ │ │ │ ├── GroupPosBased.php │ │ │ │ ├── MarkBased.php │ │ │ │ └── RegexBasedAbstract.php │ │ │ ├── Dispatcher.php │ │ │ ├── Dispatcher │ │ │ │ ├── CharCountBased.php │ │ │ │ ├── GroupCountBased.php │ │ │ │ ├── GroupPosBased.php │ │ │ │ ├── MarkBased.php │ │ │ │ └── RegexBasedAbstract.php │ │ │ ├── Route.php │ │ │ ├── RouteCollector.php │ │ │ ├── RouteParser.php │ │ │ ├── RouteParser │ │ │ │ └── Std.php │ │ │ ├── bootstrap.php │ │ │ └── functions.php │ │ │ └── test │ │ │ ├── Dispatcher │ │ │ ├── CharCountBasedTest.php │ │ │ ├── DispatcherTest.php │ │ │ ├── GroupCountBasedTest.php │ │ │ ├── GroupPosBasedTest.php │ │ │ └── MarkBasedTest.php │ │ │ ├── HackTypechecker │ │ │ ├── HackTypecheckerTest.php │ │ │ └── fixtures │ │ │ │ ├── all_options.php │ │ │ │ ├── empty_options.php │ │ │ │ └── no_options.php │ │ │ ├── RouteCollectorTest.php │ │ │ ├── RouteParser │ │ │ └── StdTest.php │ │ │ └── bootstrap.php │ │ ├── psr │ │ ├── container │ │ │ ├── .gitignore │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── ContainerExceptionInterface.php │ │ │ │ ├── ContainerInterface.php │ │ │ │ └── NotFoundExceptionInterface.php │ │ ├── http-factory │ │ │ ├── .gitignore │ │ │ ├── .pullapprove.yml │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── RequestFactoryInterface.php │ │ │ │ ├── ResponseFactoryInterface.php │ │ │ │ ├── ServerRequestFactoryInterface.php │ │ │ │ ├── StreamFactoryInterface.php │ │ │ │ ├── UploadedFileFactoryInterface.php │ │ │ │ └── UriFactoryInterface.php │ │ ├── http-message │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ ├── MessageInterface.php │ │ │ │ ├── RequestInterface.php │ │ │ │ ├── ResponseInterface.php │ │ │ │ ├── ServerRequestInterface.php │ │ │ │ ├── StreamInterface.php │ │ │ │ ├── UploadedFileInterface.php │ │ │ │ └── UriInterface.php │ │ ├── http-server-handler │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ │ └── RequestHandlerInterface.php │ │ └── http-server-middleware │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── MiddlewareInterface.php │ │ ├── ralouphie │ │ └── getallheaders │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── composer.json │ │ │ └── src │ │ │ └── getallheaders.php │ │ └── slim │ │ └── slim │ │ ├── CHANGELOG.md │ │ ├── LICENSE.md │ │ ├── MAINTAINERS.md │ │ ├── Slim │ │ ├── App.php │ │ ├── CallableResolver.php │ │ ├── Error │ │ │ ├── AbstractErrorRenderer.php │ │ │ └── Renderers │ │ │ │ ├── HtmlErrorRenderer.php │ │ │ │ ├── JsonErrorRenderer.php │ │ │ │ ├── PlainTextErrorRenderer.php │ │ │ │ └── XmlErrorRenderer.php │ │ ├── Exception │ │ │ ├── HttpBadRequestException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpForbiddenException.php │ │ │ ├── HttpInternalServerErrorException.php │ │ │ ├── HttpMethodNotAllowedException.php │ │ │ ├── HttpNotFoundException.php │ │ │ ├── HttpNotImplementedException.php │ │ │ ├── HttpSpecializedException.php │ │ │ └── HttpUnauthorizedException.php │ │ ├── Factory │ │ │ ├── AppFactory.php │ │ │ ├── Psr17 │ │ │ │ ├── GuzzlePsr17Factory.php │ │ │ │ ├── NyholmPsr17Factory.php │ │ │ │ ├── Psr17Factory.php │ │ │ │ ├── Psr17FactoryProvider.php │ │ │ │ ├── ServerRequestCreator.php │ │ │ │ ├── SlimHttpPsr17Factory.php │ │ │ │ ├── SlimHttpServerRequestCreator.php │ │ │ │ ├── SlimPsr17Factory.php │ │ │ │ └── ZendDiactorosPsr17Factory.php │ │ │ └── ServerRequestCreatorFactory.php │ │ ├── Handlers │ │ │ ├── ErrorHandler.php │ │ │ └── Strategies │ │ │ │ ├── RequestHandler.php │ │ │ │ ├── RequestResponse.php │ │ │ │ └── RequestResponseArgs.php │ │ ├── Interfaces │ │ │ ├── AdvancedCallableResolverInterface.php │ │ │ ├── CallableResolverInterface.php │ │ │ ├── DispatcherInterface.php │ │ │ ├── ErrorHandlerInterface.php │ │ │ ├── ErrorRendererInterface.php │ │ │ ├── InvocationStrategyInterface.php │ │ │ ├── MiddlewareDispatcherInterface.php │ │ │ ├── Psr17FactoryInterface.php │ │ │ ├── Psr17FactoryProviderInterface.php │ │ │ ├── RequestHandlerInvocationStrategyInterface.php │ │ │ ├── RouteCollectorInterface.php │ │ │ ├── RouteCollectorProxyInterface.php │ │ │ ├── RouteGroupInterface.php │ │ │ ├── RouteInterface.php │ │ │ ├── RouteParserInterface.php │ │ │ ├── RouteResolverInterface.php │ │ │ └── ServerRequestCreatorInterface.php │ │ ├── Middleware │ │ │ ├── BodyParsingMiddleware.php │ │ │ ├── ContentLengthMiddleware.php │ │ │ ├── ErrorMiddleware.php │ │ │ ├── MethodOverrideMiddleware.php │ │ │ ├── OutputBufferingMiddleware.php │ │ │ └── RoutingMiddleware.php │ │ ├── MiddlewareDispatcher.php │ │ ├── ResponseEmitter.php │ │ └── Routing │ │ │ ├── Dispatcher.php │ │ │ ├── FastRouteDispatcher.php │ │ │ ├── Route.php │ │ │ ├── RouteCollector.php │ │ │ ├── RouteCollectorProxy.php │ │ │ ├── RouteContext.php │ │ │ ├── RouteGroup.php │ │ │ ├── RouteParser.php │ │ │ ├── RouteResolver.php │ │ │ ├── RouteRunner.php │ │ │ └── RoutingResults.php │ │ └── composer.json ├── bearframework │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── bearframework │ │ └── bearframework │ │ │ ├── LICENSE │ │ │ ├── autoload.php │ │ │ ├── composer.json │ │ │ └── src │ │ │ ├── Addon.php │ │ │ ├── Addons.php │ │ │ ├── App.php │ │ │ ├── App │ │ │ ├── Addon.php │ │ │ ├── AddonsRepository.php │ │ │ ├── Assets.php │ │ │ ├── CacheItem.php │ │ │ ├── CacheRepository.php │ │ │ ├── ClassesRepository.php │ │ │ ├── Config.php │ │ │ ├── Container.php │ │ │ ├── Context.php │ │ │ ├── Context │ │ │ │ ├── Assets.php │ │ │ │ └── Classes.php │ │ │ ├── ContextsRepository.php │ │ │ ├── Data │ │ │ │ └── DataLockedException.php │ │ │ ├── DataItem.php │ │ │ ├── DataRepository.php │ │ │ ├── DefaultCacheDriver.php │ │ │ ├── DefaultLogger.php │ │ │ ├── ErrorHandler.php │ │ │ ├── HooksRepository.php │ │ │ ├── ICacheDriver.php │ │ │ ├── ILogger.php │ │ │ ├── Images.php │ │ │ ├── Request.php │ │ │ ├── Request │ │ │ │ ├── Cookie.php │ │ │ │ ├── CookiesRepository.php │ │ │ │ ├── FormDataFileItem.php │ │ │ │ ├── FormDataItem.php │ │ │ │ ├── FormDataRepository.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeadersRepository.php │ │ │ │ ├── PathRepository.php │ │ │ │ ├── QueryItem.php │ │ │ │ └── QueryRepository.php │ │ │ ├── Response.php │ │ │ ├── Response │ │ │ │ ├── Cookie.php │ │ │ │ ├── CookiesRepository.php │ │ │ │ ├── FileReader.php │ │ │ │ ├── HTML.php │ │ │ │ ├── Header.php │ │ │ │ ├── HeadersRepository.php │ │ │ │ ├── JSON.php │ │ │ │ ├── NotFound.php │ │ │ │ ├── PermanentRedirect.php │ │ │ │ ├── TemporaryRedirect.php │ │ │ │ ├── TemporaryUnavailable.php │ │ │ │ └── Text.php │ │ │ ├── RoutesRepository.php │ │ │ ├── ShortcutsRepository.php │ │ │ └── Urls.php │ │ │ └── DataList.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── ivopetkov │ │ ├── data-object │ │ ├── LICENSE │ │ ├── autoload.php │ │ ├── composer.json │ │ ├── docs-generator.php │ │ └── src │ │ │ ├── DataList.php │ │ │ ├── DataListContext.php │ │ │ ├── DataObject.php │ │ │ ├── DataObjectArrayAccessTrait.php │ │ │ ├── DataObjectFromArrayTrait.php │ │ │ ├── DataObjectFromJSONTrait.php │ │ │ ├── DataObjectToArrayTrait.php │ │ │ ├── DataObjectToJSONTrait.php │ │ │ └── DataObjectTrait.php │ │ └── object-storage │ │ ├── LICENSE │ │ ├── autoload.php │ │ ├── composer.json │ │ └── src │ │ ├── ObjectStorage.php │ │ └── ObjectStorage │ │ ├── ErrorException.php │ │ └── ObjectLockedException.php ├── fatfree │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── bcosca │ │ └── fatfree │ │ │ ├── composer.json │ │ │ ├── config.ini │ │ │ ├── index.php │ │ │ ├── lib │ │ │ ├── CHANGELOG.md │ │ │ ├── COPYING │ │ │ ├── audit.php │ │ │ ├── auth.php │ │ │ ├── base.php │ │ │ ├── basket.php │ │ │ ├── bcrypt.php │ │ │ ├── cli │ │ │ │ └── ws.php │ │ │ ├── code.css │ │ │ ├── db │ │ │ │ ├── cursor.php │ │ │ │ ├── jig.php │ │ │ │ ├── jig │ │ │ │ │ ├── mapper.php │ │ │ │ │ └── session.php │ │ │ │ ├── mongo.php │ │ │ │ ├── mongo │ │ │ │ │ ├── mapper.php │ │ │ │ │ └── session.php │ │ │ │ ├── sql.php │ │ │ │ └── sql │ │ │ │ │ ├── mapper.php │ │ │ │ │ └── session.php │ │ │ ├── f3.php │ │ │ ├── image.php │ │ │ ├── log.php │ │ │ ├── magic.php │ │ │ ├── markdown.php │ │ │ ├── matrix.php │ │ │ ├── session.php │ │ │ ├── smtp.php │ │ │ ├── template.php │ │ │ ├── test.php │ │ │ ├── utf.php │ │ │ ├── web.php │ │ │ └── web │ │ │ │ ├── geo.php │ │ │ │ ├── google │ │ │ │ ├── recaptcha.php │ │ │ │ └── staticmap.php │ │ │ │ ├── oauth2.php │ │ │ │ ├── openid.php │ │ │ │ └── pingback.php │ │ │ ├── readme.md │ │ │ └── ui │ │ │ ├── css │ │ │ ├── base.css │ │ │ └── theme.css │ │ │ ├── images │ │ │ ├── logo.png │ │ │ ├── paypal.png │ │ │ └── twitter.png │ │ │ ├── layout.htm │ │ │ ├── userref.htm │ │ │ └── welcome.htm │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json ├── flight │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── mikecao │ │ └── flight │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── VERSION │ │ ├── composer.json │ │ ├── flight │ │ ├── Engine.php │ │ ├── Flight.php │ │ ├── autoload.php │ │ ├── core │ │ │ ├── Dispatcher.php │ │ │ └── Loader.php │ │ ├── net │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── Route.php │ │ │ └── Router.php │ │ ├── template │ │ │ └── View.php │ │ └── util │ │ │ └── Collection.php │ │ ├── index.php │ │ └── tests │ │ ├── AutoloadTest.php │ │ ├── DispatcherTest.php │ │ ├── FilterTest.php │ │ ├── FlightTest.php │ │ ├── LoaderTest.php │ │ ├── MapTest.php │ │ ├── README.md │ │ ├── RedirectTest.php │ │ ├── RegisterTest.php │ │ ├── RenderTest.php │ │ ├── RequestTest.php │ │ ├── RouterTest.php │ │ ├── VariableTest.php │ │ ├── ViewTest.php │ │ ├── classes │ │ ├── Factory.php │ │ ├── Hello.php │ │ └── User.php │ │ └── views │ │ ├── hello.php │ │ ├── layouts │ │ └── layout.php │ │ └── world.html ├── klein-php │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── klein │ │ └── klein │ │ ├── .gitignore │ │ ├── .travis.yml │ │ ├── CHANGELOG.md │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── UPGRADING.md │ │ ├── composer.json │ │ ├── phpdoc.dist.xml │ │ ├── phpunit.xml.dist │ │ ├── src │ │ └── Klein │ │ │ ├── AbstractResponse.php │ │ │ ├── AbstractRouteFactory.php │ │ │ ├── App.php │ │ │ ├── DataCollection │ │ │ ├── DataCollection.php │ │ │ ├── HeaderDataCollection.php │ │ │ ├── ResponseCookieDataCollection.php │ │ │ ├── RouteCollection.php │ │ │ └── ServerDataCollection.php │ │ │ ├── Exceptions │ │ │ ├── DispatchHaltedException.php │ │ │ ├── DuplicateServiceException.php │ │ │ ├── HttpException.php │ │ │ ├── HttpExceptionInterface.php │ │ │ ├── KleinExceptionInterface.php │ │ │ ├── LockedResponseException.php │ │ │ ├── RegularExpressionCompilationException.php │ │ │ ├── ResponseAlreadySentException.php │ │ │ ├── RoutePathCompilationException.php │ │ │ ├── UnhandledException.php │ │ │ ├── UnknownServiceException.php │ │ │ └── ValidationException.php │ │ │ ├── HttpStatus.php │ │ │ ├── Klein.php │ │ │ ├── Request.php │ │ │ ├── Response.php │ │ │ ├── ResponseCookie.php │ │ │ ├── Route.php │ │ │ ├── RouteFactory.php │ │ │ ├── ServiceProvider.php │ │ │ └── Validator.php │ │ └── tests │ │ ├── Klein │ │ └── Tests │ │ │ ├── AbstractKleinTest.php │ │ │ ├── AbstractRouteFactoryTest.php │ │ │ ├── AppTest.php │ │ │ ├── DataCollection │ │ │ ├── DataCollectionTest.php │ │ │ ├── HeaderDataCollectionTest.php │ │ │ ├── ResponseCookieDataCollectionTest.php │ │ │ ├── RouteCollectionTest.php │ │ │ └── ServerDataCollectionTest.php │ │ │ ├── HttpStatusTest.php │ │ │ ├── KleinTest.php │ │ │ ├── Mocks │ │ │ ├── MockRequestFactory.php │ │ │ └── TestClass.php │ │ │ ├── RequestTest.php │ │ │ ├── ResponseCookieTest.php │ │ │ ├── ResponseTest.php │ │ │ ├── RouteFactoryTest.php │ │ │ ├── RouteTest.php │ │ │ ├── RoutingTest.php │ │ │ ├── ServiceProviderTest.php │ │ │ ├── ValidationsTest.php │ │ │ ├── routes │ │ │ └── random.php │ │ │ └── views │ │ │ ├── layout.php │ │ │ └── test.php │ │ ├── bootstrap.php │ │ └── functions-bootstrap.php ├── limonade │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ └── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json ├── mu │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── index.php │ └── mu.php ├── no-framework │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ └── index.php ├── siler │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── leocavalcante │ │ └── siler │ │ ├── .editorconfig │ │ ├── .gitignore │ │ ├── .phan │ │ └── config.php │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── book.json │ │ ├── composer.json │ │ ├── composer.lock │ │ ├── docs │ │ ├── .gitbook │ │ │ └── assets │ │ │ │ └── siler.png │ │ ├── README.md │ │ ├── SUMMARY.md │ │ ├── concepts-and-philosophy.md │ │ ├── functional.md │ │ ├── graphql.md │ │ ├── psrs-and-middlewares-pipelines.md │ │ ├── routing.md │ │ ├── swoole.md │ │ ├── twig-templating.md │ │ └── web-servers.md │ │ ├── examples │ │ ├── dotenv │ │ │ ├── .env │ │ │ └── index.php │ │ ├── functional │ │ │ └── functional.php │ │ ├── graphql │ │ │ ├── .gitignore │ │ │ ├── api.php │ │ │ ├── queries.graphql │ │ │ ├── resolvers.php │ │ │ ├── schema.graphql │ │ │ ├── schema.php │ │ │ └── subscriptions.php │ │ ├── hello-world │ │ │ ├── README.md │ │ │ ├── hello-world.phtml │ │ │ └── index.php │ │ ├── mail │ │ │ ├── .env.example │ │ │ ├── .gitignore │ │ │ └── swiftmailer.php │ │ ├── monolog │ │ │ ├── index.php │ │ │ └── siler.log │ │ ├── psr7-diactoros │ │ │ ├── index.php │ │ │ └── template.twig │ │ ├── psr7-route │ │ │ └── index.php │ │ ├── route-any │ │ │ └── index.php │ │ ├── route-files │ │ │ ├── .models │ │ │ ├── README.md │ │ │ ├── controllers │ │ │ │ ├── about.get.php │ │ │ │ ├── contact.get.php │ │ │ │ ├── contact.post.php │ │ │ │ └── index.get.php │ │ │ ├── index.php │ │ │ └── views │ │ │ │ ├── about.twig │ │ │ │ ├── contact.twig │ │ │ │ ├── home.twig │ │ │ │ └── layout.twig │ │ ├── route-not-found │ │ │ ├── books │ │ │ │ └── index.php │ │ │ └── index.php │ │ ├── swoole-chat │ │ │ ├── docker-compose.yml │ │ │ ├── index.html │ │ │ └── server.php │ │ ├── swoole │ │ │ ├── README.md │ │ │ ├── api │ │ │ │ └── todos.php │ │ │ ├── docker-compose.yml │ │ │ ├── index.php │ │ │ └── pages │ │ │ │ ├── _layout.twig │ │ │ │ ├── home.php │ │ │ │ └── home.twig │ │ ├── twig │ │ │ ├── home.twig │ │ │ └── index.php │ │ └── zend-party │ │ │ ├── hello-world │ │ │ └── index.php │ │ │ ├── index.php │ │ │ └── routes │ │ │ └── index.php │ │ ├── media │ │ ├── README.md │ │ ├── logo.psd │ │ ├── siler.png │ │ └── siler_avatar.jpg │ │ ├── phpcs.xml │ │ ├── phpunit.xml.dist │ │ ├── siler.png │ │ ├── src │ │ ├── Container │ │ │ └── Container.php │ │ ├── Db │ │ │ ├── Db.php │ │ │ ├── Mongo.php │ │ │ └── Redis.php │ │ ├── Diactoros │ │ │ └── Diactoros.php │ │ ├── Dotenv │ │ │ └── Dotenv.php │ │ ├── Functional │ │ │ ├── Functional.php │ │ │ └── Monad │ │ │ │ ├── Identity.php │ │ │ │ ├── Maybe.php │ │ │ │ └── Monad.php │ │ ├── GraphQL │ │ │ ├── GraphQL.php │ │ │ ├── SubscriptionsManager.php │ │ │ └── SubscriptionsServer.php │ │ ├── Http │ │ │ ├── Http.php │ │ │ ├── Request.php │ │ │ └── Response.php │ │ ├── HttpHandlerRunner │ │ │ └── HttpHandlerRunner.php │ │ ├── Mail │ │ │ └── SwiftMailer.php │ │ ├── Monolog │ │ │ └── Monolog.php │ │ ├── Prelude │ │ │ ├── Str.php │ │ │ └── Tuple.php │ │ ├── Result │ │ │ ├── Failure.php │ │ │ ├── Result.php │ │ │ └── Success.php │ │ ├── Route │ │ │ └── Route.php │ │ ├── Siler.php │ │ ├── Stratigility │ │ │ ├── RequestHandlerDecorator.php │ │ │ └── Stratigility.php │ │ ├── Swoole │ │ │ └── Swoole.php │ │ └── Twig │ │ │ └── Twig.php │ │ └── tests │ │ ├── Integration │ │ ├── ComposabilityTest.php │ │ ├── FizzbuzzTest.php │ │ └── RoutingTest.php │ │ ├── Unit │ │ ├── Container │ │ │ └── ContainerTest.php │ │ ├── Db │ │ │ ├── DbTest.php │ │ │ └── MongoTest.php │ │ ├── Diactoros │ │ │ └── DiactorosTest.php │ │ ├── Dotenv │ │ │ └── DotenvTest.php │ │ ├── Functional │ │ │ ├── FunctionalTest.php │ │ │ └── MonadTest.php │ │ ├── GraphQL │ │ │ ├── GraphQLResolverTest.php │ │ │ ├── GraphQLTest.php │ │ │ ├── GraphQLTypeDeclarationTest.php │ │ │ ├── SubscriptionsManagerTest.php │ │ │ └── SubscriptionsServerTest.php │ │ ├── Http │ │ │ ├── HttpTest.php │ │ │ ├── RequestTest.php │ │ │ └── ResponseTest.php │ │ ├── HttpHandlerRunner │ │ │ └── HttpHandlerRunnerTest.php │ │ ├── Mail │ │ │ └── SwiftMailerTest.php │ │ ├── Monolog │ │ │ └── MonologTest.php │ │ ├── Prelude │ │ │ ├── StrTest.php │ │ │ └── TupleTest.php │ │ ├── Result │ │ │ ├── FailureTest.php │ │ │ ├── ResultTest.php │ │ │ └── SuccessTest.php │ │ ├── Route │ │ │ ├── RouteClass.php │ │ │ ├── RouteClassNameTest.php │ │ │ ├── RouteFacadeTest.php │ │ │ ├── RouteFileTest.php │ │ │ ├── RouteFileWithPrefixTest.php │ │ │ ├── RoutePsr7Test.php │ │ │ ├── RouteResourceTest.php │ │ │ ├── RouteTest.php │ │ │ └── SwooleHttpRequestMock.php │ │ ├── SilerTest.php │ │ ├── Stratigility │ │ │ ├── RequestHandlerDecoratorTest.php │ │ │ └── StratigilityTest.php │ │ └── Twig │ │ │ └── TwigTest.php │ │ └── fixtures │ │ ├── .env │ │ ├── callable_require.php │ │ ├── foo.php │ │ ├── graphql_error.json │ │ ├── graphql_input.json │ │ ├── php_input.json │ │ ├── php_input.txt │ │ ├── resources │ │ ├── create.php │ │ ├── destroy.php │ │ ├── edit.php │ │ ├── index.php │ │ ├── show.php │ │ ├── slug │ │ │ └── edit.php │ │ ├── store.php │ │ └── update.php │ │ ├── route_files │ │ ├── about │ │ │ └── index.get.php │ │ ├── contact.get.php │ │ ├── contact.post.php │ │ ├── foo.$id.get.php │ │ ├── foo.@id.get.php │ │ ├── foo.{id}.get.php │ │ └── index.get.php │ │ ├── schema.graphql │ │ ├── static.twig │ │ ├── template.twig │ │ └── to_be_required.php ├── tipsy │ ├── _benchmark │ │ ├── hello_world.sh │ │ ├── setup.sh │ │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ │ ├── autoload.php │ │ ├── composer │ │ ├── ClassLoader.php │ │ ├── LICENSE │ │ ├── autoload_classmap.php │ │ ├── autoload_files.php │ │ ├── autoload_namespaces.php │ │ ├── autoload_psr4.php │ │ ├── autoload_real.php │ │ ├── autoload_static.php │ │ └── installed.json │ │ └── tipsyphp │ │ └── tipsy │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── composer.json │ │ ├── composer.lock │ │ └── src │ │ ├── App.php │ │ ├── Controller.php │ │ ├── Db.php │ │ ├── Db │ │ └── MysqlToPgsql.php │ │ ├── DependencyInjector.php │ │ ├── Exception.php │ │ ├── Factory.php │ │ ├── Http.php │ │ ├── Http │ │ └── Response.php │ │ ├── Looper.php │ │ ├── Middleware.php │ │ ├── Model.php │ │ ├── Request.php │ │ ├── Resource.php │ │ ├── Route.php │ │ ├── RouteAlias.php │ │ ├── RouteParams.php │ │ ├── Router.php │ │ ├── Scope.php │ │ ├── Service.php │ │ ├── Tipsy.php │ │ ├── View.php │ │ └── View │ │ ├── Filter.php │ │ └── Filter │ │ └── StripWhite.php └── yolo │ ├── _benchmark │ ├── hello_world.sh │ ├── setup.sh │ └── unistall.sh │ ├── composer.json │ ├── composer.lock │ ├── index.php │ └── vendor │ ├── autoload.php │ ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_files.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json │ ├── ircmaxell │ └── password-compat │ │ ├── LICENSE.md │ │ ├── composer.json │ │ ├── lib │ │ └── password.php │ │ └── version-test.php │ └── symfony │ ├── http-foundation │ ├── .gitignore │ ├── AcceptHeader.php │ ├── AcceptHeaderItem.php │ ├── ApacheRequest.php │ ├── BinaryFileResponse.php │ ├── CHANGELOG.md │ ├── Cookie.php │ ├── Exception │ │ └── ConflictingHeadersException.php │ ├── ExpressionRequestMatcher.php │ ├── File │ │ ├── Exception │ │ │ ├── AccessDeniedException.php │ │ │ ├── FileException.php │ │ │ ├── FileNotFoundException.php │ │ │ ├── UnexpectedTypeException.php │ │ │ └── UploadException.php │ │ ├── File.php │ │ ├── MimeType │ │ │ ├── ExtensionGuesser.php │ │ │ ├── ExtensionGuesserInterface.php │ │ │ ├── FileBinaryMimeTypeGuesser.php │ │ │ ├── FileinfoMimeTypeGuesser.php │ │ │ ├── MimeTypeExtensionGuesser.php │ │ │ ├── MimeTypeGuesser.php │ │ │ └── MimeTypeGuesserInterface.php │ │ └── UploadedFile.php │ ├── FileBag.php │ ├── HeaderBag.php │ ├── IpUtils.php │ ├── JsonResponse.php │ ├── LICENSE │ ├── ParameterBag.php │ ├── README.md │ ├── RedirectResponse.php │ ├── Request.php │ ├── RequestMatcher.php │ ├── RequestMatcherInterface.php │ ├── RequestStack.php │ ├── Response.php │ ├── ResponseHeaderBag.php │ ├── ServerBag.php │ ├── Session │ │ ├── Attribute │ │ │ ├── AttributeBag.php │ │ │ ├── AttributeBagInterface.php │ │ │ └── NamespacedAttributeBag.php │ │ ├── Flash │ │ │ ├── AutoExpireFlashBag.php │ │ │ ├── FlashBag.php │ │ │ └── FlashBagInterface.php │ │ ├── Session.php │ │ ├── SessionBagInterface.php │ │ ├── SessionInterface.php │ │ └── Storage │ │ │ ├── Handler │ │ │ ├── LegacyPdoSessionHandler.php │ │ │ ├── MemcacheSessionHandler.php │ │ │ ├── MemcachedSessionHandler.php │ │ │ ├── MongoDbSessionHandler.php │ │ │ ├── NativeFileSessionHandler.php │ │ │ ├── NativeSessionHandler.php │ │ │ ├── NullSessionHandler.php │ │ │ ├── PdoSessionHandler.php │ │ │ └── WriteCheckSessionHandler.php │ │ │ ├── MetadataBag.php │ │ │ ├── MockArraySessionStorage.php │ │ │ ├── MockFileSessionStorage.php │ │ │ ├── NativeSessionStorage.php │ │ │ ├── PhpBridgeSessionStorage.php │ │ │ ├── Proxy │ │ │ ├── AbstractProxy.php │ │ │ ├── NativeProxy.php │ │ │ └── SessionHandlerProxy.php │ │ │ └── SessionStorageInterface.php │ ├── StreamedResponse.php │ ├── Tests │ │ ├── AcceptHeaderItemTest.php │ │ ├── AcceptHeaderTest.php │ │ ├── ApacheRequestTest.php │ │ ├── BinaryFileResponseTest.php │ │ ├── CookieTest.php │ │ ├── ExpressionRequestMatcherTest.php │ │ ├── File │ │ │ ├── FakeFile.php │ │ │ ├── FileTest.php │ │ │ ├── Fixtures │ │ │ │ ├── .unknownextension │ │ │ │ ├── directory │ │ │ │ │ └── .empty │ │ │ │ ├── other-file.example │ │ │ │ ├── test │ │ │ │ └── test.gif │ │ │ ├── MimeType │ │ │ │ └── MimeTypeTest.php │ │ │ └── UploadedFileTest.php │ │ ├── FileBagTest.php │ │ ├── HeaderBagTest.php │ │ ├── IpUtilsTest.php │ │ ├── JsonResponseTest.php │ │ ├── ParameterBagTest.php │ │ ├── RedirectResponseTest.php │ │ ├── RequestMatcherTest.php │ │ ├── RequestStackTest.php │ │ ├── RequestTest.php │ │ ├── ResponseHeaderBagTest.php │ │ ├── ResponseTest.php │ │ ├── ResponseTestCase.php │ │ ├── ServerBagTest.php │ │ ├── Session │ │ │ ├── Attribute │ │ │ │ ├── AttributeBagTest.php │ │ │ │ └── NamespacedAttributeBagTest.php │ │ │ ├── Flash │ │ │ │ ├── AutoExpireFlashBagTest.php │ │ │ │ └── FlashBagTest.php │ │ │ ├── SessionTest.php │ │ │ └── Storage │ │ │ │ ├── Handler │ │ │ │ ├── LegacyPdoSessionHandlerTest.php │ │ │ │ ├── MemcacheSessionHandlerTest.php │ │ │ │ ├── MemcachedSessionHandlerTest.php │ │ │ │ ├── MongoDbSessionHandlerTest.php │ │ │ │ ├── NativeFileSessionHandlerTest.php │ │ │ │ ├── NativeSessionHandlerTest.php │ │ │ │ ├── NullSessionHandlerTest.php │ │ │ │ ├── PdoSessionHandlerTest.php │ │ │ │ └── WriteCheckSessionHandlerTest.php │ │ │ │ ├── MetadataBagTest.php │ │ │ │ ├── MockArraySessionStorageTest.php │ │ │ │ ├── MockFileSessionStorageTest.php │ │ │ │ ├── NativeSessionStorageTest.php │ │ │ │ ├── PhpBridgeSessionStorageTest.php │ │ │ │ └── Proxy │ │ │ │ ├── AbstractProxyTest.php │ │ │ │ ├── NativeProxyTest.php │ │ │ │ └── SessionHandlerProxyTest.php │ │ ├── StreamedResponseTest.php │ │ └── schema │ │ │ ├── http-status-codes.rng │ │ │ └── iana-registry.rng │ ├── composer.json │ └── phpunit.xml.dist │ ├── polyfill-mbstring │ ├── LICENSE │ ├── Mbstring.php │ ├── README.md │ ├── Resources │ │ └── unidata │ │ │ ├── lowerCase.php │ │ │ ├── titleCaseRegexp.php │ │ │ └── upperCase.php │ ├── bootstrap.php │ └── composer.json │ ├── polyfill-php54 │ ├── LICENSE │ ├── Php54.php │ ├── README.md │ ├── Resources │ │ └── stubs │ │ │ ├── CallbackFilterIterator.php │ │ │ ├── RecursiveCallbackFilterIterator.php │ │ │ └── SessionHandlerInterface.php │ ├── bootstrap.php │ └── composer.json │ └── polyfill-php55 │ ├── LICENSE │ ├── Php55.php │ ├── Php55ArrayColumn.php │ ├── README.md │ ├── bootstrap.php │ └── composer.json ├── graph.php ├── img ├── AB_screenshot-localhost-2019.01.27.png ├── WRK_screenshot-localhost-2019.01.27_1.png ├── WRK_screenshot-localhost-2019.01.27_2.png ├── WRK_screenshot-localhost-2019.01.27_3.png └── WRK_screenshot-localhost-2019.01.27_4.png ├── index.php ├── libs ├── build_table.php ├── make_graph.php ├── mruz │ ├── make_chart_parts.php │ └── make_graph.php ├── output_data.php ├── parse_results.php ├── php-recipe-2nd │ ├── LICENSE │ └── make_chart_parts.php └── recalc_relative.php ├── list.sh ├── output ├── .gitkeep.sh └── setup.log ├── setup.sh ├── uninstall.sh └── update.sh /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/README.md -------------------------------------------------------------------------------- /benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/benchmark.sh -------------------------------------------------------------------------------- /benchmarks/_functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/benchmarks/_functions.sh -------------------------------------------------------------------------------- /benchmarks/avg_ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/benchmarks/avg_ms.php -------------------------------------------------------------------------------- /benchmarks/hello_world.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/benchmarks/hello_world.sh -------------------------------------------------------------------------------- /benchmarks/sum_ms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/benchmarks/sum_ms.php -------------------------------------------------------------------------------- /bin/show_comparison_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/bin/show_comparison_table.php -------------------------------------------------------------------------------- /bin/show_fw_array.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/bin/show_fw_array.sh -------------------------------------------------------------------------------- /bin/show_results_table.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/bin/show_results_table.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="router" -------------------------------------------------------------------------------- /frameworks/AltoRouter/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/AltoRouter/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/AltoRouter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/composer.json -------------------------------------------------------------------------------- /frameworks/AltoRouter/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/composer.lock -------------------------------------------------------------------------------- /frameworks/AltoRouter/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/index.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/altorouter/altorouter/AltoRouter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/altorouter/altorouter/AltoRouter.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/altorouter/altorouter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/altorouter/altorouter/README.md -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/altorouter/altorouter/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/altorouter/altorouter/composer.json -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/AltoRouter/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/AltoRouter/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/FastRoute/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="router" -------------------------------------------------------------------------------- /frameworks/FastRoute/_benchmark/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/_benchmark/setup.sh -------------------------------------------------------------------------------- /frameworks/FastRoute/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/FastRoute/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/composer.json -------------------------------------------------------------------------------- /frameworks/FastRoute/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/composer.lock -------------------------------------------------------------------------------- /frameworks/FastRoute/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/index.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/.gitignore -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/.hhconfig: -------------------------------------------------------------------------------- 1 | assume_php=false 2 | -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/.travis.yml -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/FastRoute.hhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/FastRoute.hhi -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/LICENSE -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/README.md -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/composer.json -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/phpunit.xml -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/psalm.xml -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/BadRouteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/BadRouteException.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/DataGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/DataGenerator.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/Dispatcher.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/Dispatcher/MarkBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/Dispatcher/MarkBased.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/Route.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/RouteCollector.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/RouteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/RouteParser.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/RouteParser/Std.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/RouteParser/Std.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/bootstrap.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/src/functions.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/test/RouteCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/test/RouteCollectorTest.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/test/RouteParser/StdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/test/RouteParser/StdTest.php -------------------------------------------------------------------------------- /frameworks/FastRoute/vendor/nikic/fast-route/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/FastRoute/vendor/nikic/fast-route/test/bootstrap.php -------------------------------------------------------------------------------- /frameworks/Ham/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/Ham/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/Ham/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/Ham/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/composer.json -------------------------------------------------------------------------------- /frameworks/Ham/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/composer.lock -------------------------------------------------------------------------------- /frameworks/Ham/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/index.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/Ham/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Ham/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/PHP-Router/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="router" -------------------------------------------------------------------------------- /frameworks/PHP-Router/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/PHP-Router/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/PHP-Router/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/composer.json -------------------------------------------------------------------------------- /frameworks/PHP-Router/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/composer.lock -------------------------------------------------------------------------------- /frameworks/PHP-Router/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/index.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/fig/http-message-util/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/fig/http-message-util/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/fig/http-message-util/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/fig/http-message-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/fig/http-message-util/LICENSE -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/fig/http-message-util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/fig/http-message-util/README.md -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/fig/http-message-util/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/fig/http-message-util/composer.json -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/src/MessageInterface.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/src/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/src/RequestInterface.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/src/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/src/ResponseInterface.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/src/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/src/StreamInterface.php -------------------------------------------------------------------------------- /frameworks/PHP-Router/vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/PHP-Router/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/Slim-4/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/Slim-4/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/Slim-4/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/composer.lock -------------------------------------------------------------------------------- /frameworks/Slim-4/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/index.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/.gitignore: -------------------------------------------------------------------------------- 1 | vendor/ 2 | -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/fig/http-message-util/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/fig/http-message-util/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/fig/http-message-util/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/fig/http-message-util/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/fig/http-message-util/src/StatusCodeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/fig/http-message-util/src/StatusCodeInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/.gitignore -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/.hhconfig: -------------------------------------------------------------------------------- 1 | assume_php=false 2 | -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/.travis.yml -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/FastRoute.hhi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/FastRoute.hhi -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/phpunit.xml -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/psalm.xml -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/BadRouteException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/BadRouteException.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/DataGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/DataGenerator.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/DataGenerator/MarkBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/DataGenerator/MarkBased.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher/GroupPosBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher/GroupPosBased.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher/MarkBased.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/Dispatcher/MarkBased.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/Route.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/RouteCollector.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/RouteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/RouteParser.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/RouteParser/Std.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/RouteParser/Std.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/bootstrap.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/src/functions.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/test/RouteCollectorTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/test/RouteCollectorTest.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/test/RouteParser/StdTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/test/RouteParser/StdTest.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/nikic/fast-route/test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/nikic/fast-route/test/bootstrap.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/.gitignore -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/src/ContainerExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/src/ContainerExceptionInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/src/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/src/ContainerInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/container/src/NotFoundExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/container/src/NotFoundExceptionInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ 3 | -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/.pullapprove.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/.pullapprove.yml -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/src/RequestFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/src/RequestFactoryInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/src/ResponseFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/src/ResponseFactoryInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/src/StreamFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/src/StreamFactoryInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-factory/src/UriFactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-factory/src/UriFactoryInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/MessageInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/MessageInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/RequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/RequestInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/ResponseInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/ResponseInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/ServerRequestInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/ServerRequestInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/StreamInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/StreamInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/UploadedFileInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/UploadedFileInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-message/src/UriInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-message/src/UriInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-handler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-handler/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-handler/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-handler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-handler/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-middleware/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-middleware/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-middleware/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/psr/http-server-middleware/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/psr/http-server-middleware/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/ralouphie/getallheaders/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/ralouphie/getallheaders/LICENSE -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/ralouphie/getallheaders/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/ralouphie/getallheaders/README.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/ralouphie/getallheaders/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/ralouphie/getallheaders/composer.json -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/ralouphie/getallheaders/src/getallheaders.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/ralouphie/getallheaders/src/getallheaders.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/LICENSE.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/MAINTAINERS.md -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/App.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/CallableResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/CallableResolver.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Error/AbstractErrorRenderer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Error/AbstractErrorRenderer.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Exception/HttpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Exception/HttpException.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Factory/AppFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Factory/AppFactory.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Factory/Psr17/Psr17Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Factory/Psr17/Psr17Factory.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Factory/Psr17/SlimPsr17Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Factory/Psr17/SlimPsr17Factory.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Handlers/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Handlers/ErrorHandler.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/DispatcherInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/DispatcherInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/RouteGroupInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/RouteGroupInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/RouteInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Interfaces/RouteInterface.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Middleware/ErrorMiddleware.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Middleware/RoutingMiddleware.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/MiddlewareDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/MiddlewareDispatcher.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/ResponseEmitter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/ResponseEmitter.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/Dispatcher.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/FastRouteDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/FastRouteDispatcher.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/Route.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteCollector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteCollector.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteCollectorProxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteCollectorProxy.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteContext.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteContext.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteGroup.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteGroup.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteParser.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteResolver.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RouteRunner.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RoutingResults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/Slim/Routing/RoutingResults.php -------------------------------------------------------------------------------- /frameworks/Slim-4/vendor/slim/slim/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/Slim-4/vendor/slim/slim/composer.json -------------------------------------------------------------------------------- /frameworks/bearframework/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/bearframework/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/bearframework/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/bearframework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/composer.json -------------------------------------------------------------------------------- /frameworks/bearframework/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/composer.lock -------------------------------------------------------------------------------- /frameworks/bearframework/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/index.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/LICENSE -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/autoload.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/composer.json -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/src/Addon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/src/Addon.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/src/Addons.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/src/Addons.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/bearframework/bearframework/src/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/bearframework/bearframework/src/App.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/LICENSE -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/autoload.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/composer.json -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/docs-generator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/docs-generator.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/src/DataList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/src/DataList.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/data-object/src/DataObject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/data-object/src/DataObject.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/object-storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/object-storage/LICENSE -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/object-storage/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/object-storage/autoload.php -------------------------------------------------------------------------------- /frameworks/bearframework/vendor/ivopetkov/object-storage/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/bearframework/vendor/ivopetkov/object-storage/composer.json -------------------------------------------------------------------------------- /frameworks/fatfree/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/fatfree/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/fatfree/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/fatfree/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/composer.json -------------------------------------------------------------------------------- /frameworks/fatfree/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/composer.lock -------------------------------------------------------------------------------- /frameworks/fatfree/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/index.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/composer.json -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/config.ini: -------------------------------------------------------------------------------- 1 | [globals] 2 | 3 | DEBUG=3 4 | UI=ui/ 5 | -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/index.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/COPYING -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/audit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/audit.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/auth.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/base.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/basket.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/basket.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/bcrypt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/bcrypt.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/cli/ws.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/cli/ws.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/code.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/code.css -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/cursor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/cursor.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig/mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig/mapper.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/jig/session.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo/mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo/mapper.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/mongo/session.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql/mapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql/mapper.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/db/sql/session.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/f3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/f3.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/image.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/image.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/log.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/magic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/magic.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/markdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/markdown.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/matrix.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/matrix.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/session.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/smtp.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/template.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/test.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/utf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/utf.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/geo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/geo.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/google/recaptcha.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/google/recaptcha.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/google/staticmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/google/staticmap.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/oauth2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/oauth2.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/openid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/openid.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/lib/web/pingback.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/lib/web/pingback.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/readme.md -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/css/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/css/base.css -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/css/theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/css/theme.css -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/images/logo.png -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/images/paypal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/images/paypal.png -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/images/twitter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/images/twitter.png -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/layout.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/layout.htm -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/userref.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/userref.htm -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/bcosca/fatfree/ui/welcome.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/bcosca/fatfree/ui/welcome.htm -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/fatfree/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/fatfree/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/flight/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/flight/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/flight/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/flight/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/composer.json -------------------------------------------------------------------------------- /frameworks/flight/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/composer.lock -------------------------------------------------------------------------------- /frameworks/flight/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/index.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/.gitignore -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/LICENSE -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/README.md -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/VERSION: -------------------------------------------------------------------------------- 1 | 1.3.7 2 | -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/composer.json -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/Engine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/Engine.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/Flight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/Flight.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/autoload.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/core/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/core/Dispatcher.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/core/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/core/Loader.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/net/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/net/Request.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/net/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/net/Response.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/net/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/net/Route.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/net/Router.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/net/Router.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/template/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/template/View.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/flight/util/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/flight/util/Collection.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/index.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/AutoloadTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/AutoloadTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/DispatcherTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/DispatcherTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/FilterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/FilterTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/FlightTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/FlightTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/LoaderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/LoaderTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/MapTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/MapTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/README.md -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/RedirectTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/RedirectTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/RegisterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/RegisterTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/RenderTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/RenderTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/RequestTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/RouterTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/RouterTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/VariableTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/VariableTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/ViewTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/ViewTest.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/classes/Factory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/classes/Factory.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/classes/Hello.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/classes/Hello.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/classes/User.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/classes/User.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/views/hello.php: -------------------------------------------------------------------------------- 1 | Hello, ! -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/views/layouts/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/flight/vendor/mikecao/flight/tests/views/layouts/layout.php -------------------------------------------------------------------------------- /frameworks/flight/vendor/mikecao/flight/tests/views/world.html: -------------------------------------------------------------------------------- 1 | Hello world, ! -------------------------------------------------------------------------------- /frameworks/klein-php/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="router" -------------------------------------------------------------------------------- /frameworks/klein-php/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/klein-php/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/klein-php/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/composer.json -------------------------------------------------------------------------------- /frameworks/klein-php/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/composer.lock -------------------------------------------------------------------------------- /frameworks/klein-php/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/index.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/.gitignore -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/.travis.yml -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/CHANGELOG.md -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/CONTRIBUTING.md -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/LICENSE -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/README.md -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/UPGRADING.md -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/composer.json -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/phpdoc.dist.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/phpdoc.dist.xml -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/phpunit.xml.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/phpunit.xml.dist -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/AbstractResponse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/AbstractResponse.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/AbstractRouteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/AbstractRouteFactory.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/App.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/App.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/HttpStatus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/HttpStatus.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/Klein.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/Klein.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/Request.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/Response.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/Response.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/ResponseCookie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/ResponseCookie.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/Route.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/Route.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/RouteFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/RouteFactory.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/ServiceProvider.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/src/Klein/Validator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/src/Klein/Validator.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/AppTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/AppTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/KleinTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/KleinTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RequestTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RequestTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/ResponseTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/ResponseTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RouteTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RouteTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RoutingTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/RoutingTest.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/views/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/views/layout.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/views/test.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/Klein/Tests/views/test.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/bootstrap.php -------------------------------------------------------------------------------- /frameworks/klein-php/vendor/klein/klein/tests/functions-bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/klein-php/vendor/klein/klein/tests/functions-bootstrap.php -------------------------------------------------------------------------------- /frameworks/limonade/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/limonade/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/limonade/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/limonade/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/composer.json -------------------------------------------------------------------------------- /frameworks/limonade/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/composer.lock -------------------------------------------------------------------------------- /frameworks/limonade/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/index.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/limonade/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/limonade/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/mu/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="router" -------------------------------------------------------------------------------- /frameworks/mu/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh -------------------------------------------------------------------------------- /frameworks/mu/_benchmark/unistall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd .. -------------------------------------------------------------------------------- /frameworks/mu/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/mu/index.php -------------------------------------------------------------------------------- /frameworks/mu/mu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/mu/mu.php -------------------------------------------------------------------------------- /frameworks/no-framework/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="no-framework" -------------------------------------------------------------------------------- /frameworks/no-framework/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | -------------------------------------------------------------------------------- /frameworks/no-framework/_benchmark/unistall.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd .. -------------------------------------------------------------------------------- /frameworks/no-framework/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/no-framework/index.php -------------------------------------------------------------------------------- /frameworks/siler/_benchmark/hello_world.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | url="$base/$fw/" 4 | type="micro" -------------------------------------------------------------------------------- /frameworks/siler/_benchmark/setup.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | composer install --no-dev --optimize-autoloader -------------------------------------------------------------------------------- /frameworks/siler/_benchmark/unistall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/_benchmark/unistall.sh -------------------------------------------------------------------------------- /frameworks/siler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/composer.json -------------------------------------------------------------------------------- /frameworks/siler/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/composer.lock -------------------------------------------------------------------------------- /frameworks/siler/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/autoload.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/ClassLoader.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/LICENSE -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_classmap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_classmap.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_files.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_files.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_namespaces.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_namespaces.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_psr4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_psr4.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_real.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_real.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/autoload_static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/autoload_static.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/composer/installed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/composer/installed.json -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/.editorconfig -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/.gitignore: -------------------------------------------------------------------------------- 1 | *.cache 2 | /*.phar 3 | /.idea/ 4 | /coverage-* 5 | /issues/ 6 | /vendor/ 7 | -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/.phan/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/.phan/config.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/.travis.yml -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/LICENSE -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/README.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/SECURITY.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/book.json: -------------------------------------------------------------------------------- 1 | { 2 | "root": "./docs" 3 | } -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/composer.json -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/composer.lock -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/.gitbook/assets/siler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/.gitbook/assets/siler.png -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/README.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/SUMMARY.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/functional.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/functional.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/graphql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/graphql.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/routing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/routing.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/swoole.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/swoole.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/twig-templating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/twig-templating.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/docs/web-servers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/docs/web-servers.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/dotenv/.env: -------------------------------------------------------------------------------- 1 | MESSAGE="Hello World" 2 | -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/dotenv/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/dotenv/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/graphql/.gitignore: -------------------------------------------------------------------------------- 1 | /db.sqlite 2 | -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/graphql/api.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/graphql/api.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/graphql/resolvers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/graphql/resolvers.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/graphql/schema.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/graphql/schema.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/hello-world/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/hello-world/README.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/hello-world/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/hello-world/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/mail/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/mail/.env.example -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/mail/.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/mail/swiftmailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/mail/swiftmailer.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/monolog/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/monolog/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/monolog/siler.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/monolog/siler.log -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/psr7-route/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/psr7-route/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/route-any/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/route-any/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/route-files/.models: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/route-files/.models -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/route-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/route-files/README.md -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/route-files/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dejurin/php-micro-router-framework-benchmark/HEAD/frameworks/siler/vendor/leocavalcante/siler/examples/route-files/index.php -------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/examples/route-not-found/books/index.php: -------------------------------------------------------------------------------- 1 | Hello World
-------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/tests/fixtures/template.twig: -------------------------------------------------------------------------------- 1 |{{ foo }}
-------------------------------------------------------------------------------- /frameworks/siler/vendor/leocavalcante/siler/tests/fixtures/to_be_required.php: -------------------------------------------------------------------------------- 1 |