├── .gitignore ├── README.md ├── aura ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── auryn ├── test1.php ├── test2.php ├── test3.php ├── test4.php └── test5.php ├── blank.php ├── bootstrap.php ├── composer.json ├── dice ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── laravel ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── league ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── nette ├── config │ └── services.neon ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── njasm ├── Interop │ └── Container │ │ ├── ContainerInterface.php │ │ └── Exception │ │ ├── ContainerException.php │ │ └── NotFoundException.php ├── Njasm │ └── Container │ │ ├── Adapter │ │ ├── AuraAdapter.php │ │ ├── PHPDIAdapter.php │ │ ├── PimpleAdapter.php │ │ └── SymfonyAdapter.php │ │ ├── Container.php │ │ ├── Definition │ │ ├── Builder │ │ │ ├── AliasBuilder.php │ │ │ ├── BuilderInterface.php │ │ │ ├── ClosureBuilder.php │ │ │ ├── ObjectBuilder.php │ │ │ ├── PrimitiveBuilder.php │ │ │ ├── ProvidersBuilder.php │ │ │ └── ReflectionBuilder.php │ │ ├── Definition.php │ │ ├── DefinitionInterface.php │ │ ├── DefinitionType.php │ │ ├── DefinitionsMap.php │ │ ├── Finder │ │ │ ├── AbstractFinder.php │ │ │ ├── LocalFinder.php │ │ │ └── ProvidersFinder.php │ │ └── Service │ │ │ ├── DefinitionService.php │ │ │ └── Request.php │ │ ├── Exception │ │ ├── ContainerException.php │ │ └── NotFoundException.php │ │ ├── Factory │ │ ├── FactoryInterface.php │ │ ├── LocalFactory.php │ │ └── ProviderFactory.php │ │ └── ServicesProviderInterface.php ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── phalcon ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── php-di ├── config-test3.php ├── config-test5.php ├── config.php ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php └── test6.php ├── php-phalcon.ini ├── php.ini ├── pimple ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── ray ├── Aura │ └── Di │ │ ├── Config.php │ │ ├── ConfigInterface.php │ │ ├── Container.php │ │ ├── ContainerInterface.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── ContainerExists.php │ │ ├── ContainerLocked.php │ │ ├── ContainerNotFound.php │ │ ├── ServiceInvalid.php │ │ └── ServiceNotFound.php │ │ ├── Forge.php │ │ ├── ForgeInterface.php │ │ └── Lazy.php ├── Doctrine │ └── Common │ │ ├── Annotations │ │ ├── Annotation.php │ │ ├── Annotation │ │ │ ├── Attribute.php │ │ │ ├── Attributes.php │ │ │ ├── Enum.php │ │ │ ├── IgnoreAnnotation.php │ │ │ ├── Required.php │ │ │ └── Target.php │ │ ├── AnnotationException.php │ │ ├── AnnotationReader.php │ │ ├── AnnotationRegistry.php │ │ ├── CachedReader.php │ │ ├── DocLexer.php │ │ ├── DocParser.php │ │ ├── FileCacheReader.php │ │ ├── IndexedReader.php │ │ ├── PhpParser.php │ │ ├── Reader.php │ │ ├── SimpleAnnotationReader.php │ │ └── TokenParser.php │ │ ├── Cache │ │ ├── ApcCache.php │ │ ├── ArrayCache.php │ │ ├── Cache.php │ │ ├── CacheProvider.php │ │ ├── CouchbaseCache.php │ │ ├── FileCache.php │ │ ├── FilesystemCache.php │ │ ├── MemcacheCache.php │ │ ├── MemcachedCache.php │ │ ├── MongoDBCache.php │ │ ├── PhpFileCache.php │ │ ├── RedisCache.php │ │ ├── RiakCache.php │ │ ├── Version.php │ │ ├── WinCacheCache.php │ │ ├── XcacheCache.php │ │ └── ZendDataCache.php │ │ ├── ClassLoader.php │ │ ├── CommonException.php │ │ ├── Comparable.php │ │ ├── EventArgs.php │ │ ├── EventManager.php │ │ ├── EventSubscriber.php │ │ ├── Lexer.php │ │ ├── Lexer │ │ └── AbstractLexer.php │ │ ├── NotifyPropertyChanged.php │ │ ├── PropertyChangedListener.php │ │ └── Version.php ├── PHPParser │ ├── Autoloader.php │ ├── Builder.php │ ├── Builder │ │ ├── Class.php │ │ ├── Function.php │ │ ├── Interface.php │ │ ├── Method.php │ │ ├── Param.php │ │ └── Property.php │ ├── BuilderAbstract.php │ ├── BuilderFactory.php │ ├── Comment.php │ ├── Comment │ │ └── Doc.php │ ├── Error.php │ ├── Lexer.php │ ├── Lexer │ │ └── Emulative.php │ ├── Node.php │ ├── Node │ │ ├── Arg.php │ │ ├── Const.php │ │ ├── Expr.php │ │ ├── Expr │ │ │ ├── Array.php │ │ │ ├── ArrayDimFetch.php │ │ │ ├── ArrayItem.php │ │ │ ├── Assign.php │ │ │ ├── AssignBitwiseAnd.php │ │ │ ├── AssignBitwiseOr.php │ │ │ ├── AssignBitwiseXor.php │ │ │ ├── AssignConcat.php │ │ │ ├── AssignDiv.php │ │ │ ├── AssignMinus.php │ │ │ ├── AssignMod.php │ │ │ ├── AssignMul.php │ │ │ ├── AssignPlus.php │ │ │ ├── AssignRef.php │ │ │ ├── AssignShiftLeft.php │ │ │ ├── AssignShiftRight.php │ │ │ ├── BitwiseAnd.php │ │ │ ├── BitwiseNot.php │ │ │ ├── BitwiseOr.php │ │ │ ├── BitwiseXor.php │ │ │ ├── BooleanAnd.php │ │ │ ├── BooleanNot.php │ │ │ ├── BooleanOr.php │ │ │ ├── Cast.php │ │ │ ├── Cast │ │ │ │ ├── Array.php │ │ │ │ ├── Bool.php │ │ │ │ ├── Double.php │ │ │ │ ├── Int.php │ │ │ │ ├── Object.php │ │ │ │ ├── String.php │ │ │ │ └── Unset.php │ │ │ ├── ClassConstFetch.php │ │ │ ├── Clone.php │ │ │ ├── Closure.php │ │ │ ├── ClosureUse.php │ │ │ ├── Concat.php │ │ │ ├── ConstFetch.php │ │ │ ├── Div.php │ │ │ ├── Empty.php │ │ │ ├── Equal.php │ │ │ ├── ErrorSuppress.php │ │ │ ├── Eval.php │ │ │ ├── Exit.php │ │ │ ├── FuncCall.php │ │ │ ├── Greater.php │ │ │ ├── GreaterOrEqual.php │ │ │ ├── Identical.php │ │ │ ├── Include.php │ │ │ ├── Instanceof.php │ │ │ ├── Isset.php │ │ │ ├── List.php │ │ │ ├── LogicalAnd.php │ │ │ ├── LogicalOr.php │ │ │ ├── LogicalXor.php │ │ │ ├── MethodCall.php │ │ │ ├── Minus.php │ │ │ ├── Mod.php │ │ │ ├── Mul.php │ │ │ ├── New.php │ │ │ ├── NotEqual.php │ │ │ ├── NotIdentical.php │ │ │ ├── Plus.php │ │ │ ├── PostDec.php │ │ │ ├── PostInc.php │ │ │ ├── PreDec.php │ │ │ ├── PreInc.php │ │ │ ├── Print.php │ │ │ ├── PropertyFetch.php │ │ │ ├── ShellExec.php │ │ │ ├── ShiftLeft.php │ │ │ ├── ShiftRight.php │ │ │ ├── Smaller.php │ │ │ ├── SmallerOrEqual.php │ │ │ ├── StaticCall.php │ │ │ ├── StaticPropertyFetch.php │ │ │ ├── Ternary.php │ │ │ ├── UnaryMinus.php │ │ │ ├── UnaryPlus.php │ │ │ ├── Variable.php │ │ │ └── Yield.php │ │ ├── Name.php │ │ ├── Name │ │ │ ├── FullyQualified.php │ │ │ └── Relative.php │ │ ├── Param.php │ │ ├── Scalar.php │ │ ├── Scalar │ │ │ ├── ClassConst.php │ │ │ ├── DNumber.php │ │ │ ├── DirConst.php │ │ │ ├── Encapsed.php │ │ │ ├── FileConst.php │ │ │ ├── FuncConst.php │ │ │ ├── LNumber.php │ │ │ ├── LineConst.php │ │ │ ├── MethodConst.php │ │ │ ├── NSConst.php │ │ │ ├── String.php │ │ │ └── TraitConst.php │ │ ├── Stmt.php │ │ └── Stmt │ │ │ ├── Break.php │ │ │ ├── Case.php │ │ │ ├── Catch.php │ │ │ ├── Class.php │ │ │ ├── ClassConst.php │ │ │ ├── ClassMethod.php │ │ │ ├── Const.php │ │ │ ├── Continue.php │ │ │ ├── Declare.php │ │ │ ├── DeclareDeclare.php │ │ │ ├── Do.php │ │ │ ├── Echo.php │ │ │ ├── Else.php │ │ │ ├── ElseIf.php │ │ │ ├── For.php │ │ │ ├── Foreach.php │ │ │ ├── Function.php │ │ │ ├── Global.php │ │ │ ├── Goto.php │ │ │ ├── HaltCompiler.php │ │ │ ├── If.php │ │ │ ├── InlineHTML.php │ │ │ ├── Interface.php │ │ │ ├── Label.php │ │ │ ├── Namespace.php │ │ │ ├── Property.php │ │ │ ├── PropertyProperty.php │ │ │ ├── Return.php │ │ │ ├── Static.php │ │ │ ├── StaticVar.php │ │ │ ├── Switch.php │ │ │ ├── Throw.php │ │ │ ├── Trait.php │ │ │ ├── TraitUse.php │ │ │ ├── TraitUseAdaptation.php │ │ │ ├── TraitUseAdaptation │ │ │ ├── Alias.php │ │ │ └── Precedence.php │ │ │ ├── TryCatch.php │ │ │ ├── Unset.php │ │ │ ├── Use.php │ │ │ ├── UseUse.php │ │ │ └── While.php │ ├── NodeAbstract.php │ ├── NodeDumper.php │ ├── NodeTraverser.php │ ├── NodeTraverserInterface.php │ ├── NodeVisitor.php │ ├── NodeVisitor │ │ └── NameResolver.php │ ├── NodeVisitorAbstract.php │ ├── Parser.php │ ├── PrettyPrinter │ │ ├── Default.php │ │ └── Zend.php │ ├── PrettyPrinterAbstract.php │ ├── Serializer.php │ ├── Serializer │ │ └── XML.php │ ├── Template.php │ ├── TemplateLoader.php │ ├── Unserializer.php │ └── Unserializer │ │ └── XML.php ├── Ray │ ├── Aop │ │ ├── AbstractMatcher.php │ │ ├── AbstractWeaved.php │ │ ├── Advice.php │ │ ├── Annotation.php │ │ ├── Bind.php │ │ ├── BindInterface.php │ │ ├── Compiler.php │ │ ├── Compiler │ │ │ └── Template.php │ │ ├── CompilerInterface.php │ │ ├── Exception │ │ │ ├── DuplicatedNamedParam.php │ │ │ ├── ExceptionInterface.php │ │ │ ├── InvalidAnnotation.php │ │ │ ├── InvalidArgument.php │ │ │ ├── InvalidSubclassMatch.php │ │ │ └── UndefinedProperty.php │ │ ├── Interceptor.php │ │ ├── Invocation.php │ │ ├── Joinpoint.php │ │ ├── Match.php │ │ ├── Matchable.php │ │ ├── Matched.php │ │ ├── Matcher.php │ │ ├── MethodInterceptor.php │ │ ├── MethodInvocation.php │ │ ├── NamedArgs.php │ │ ├── NamedArgsInterface.php │ │ ├── Pointcut.php │ │ ├── ReflectiveMethodInvocation.php │ │ ├── Weave.php │ │ ├── WeavedInterface.php │ │ └── Weaver.php │ └── Di │ │ ├── AbstractCompilationLogger.php │ │ ├── AbstractModule.php │ │ ├── Annotation.php │ │ ├── AnnotationInterface.php │ │ ├── AopClassLoader.php │ │ ├── Binder.php │ │ ├── BoundDefinition.php │ │ ├── BoundInstance.php │ │ ├── BoundInstanceInterface.php │ │ ├── CacheInjector.php │ │ ├── ClassLoaderInterface.php │ │ ├── CompilationLogger.php │ │ ├── CompilationLoggerInterface.php │ │ ├── Config.php │ │ ├── Container.php │ │ ├── Definition.php │ │ ├── DependencyFactory.php │ │ ├── DependencyProvider.php │ │ ├── DependencyReference.php │ │ ├── Di │ │ ├── Annotation.php │ │ ├── ImplementedBy.php │ │ ├── Inject.php │ │ ├── Named.php │ │ ├── PostConstruct.php │ │ ├── PreDestroy.php │ │ ├── ProvidedBy.php │ │ └── Scope.php │ │ ├── DiAnnotation.php │ │ ├── DiCompiler.php │ │ ├── EmptyModule.php │ │ ├── Exception.php │ │ ├── Exception │ │ ├── Binding.php │ │ ├── Compile.php │ │ ├── ExceptionInterface.php │ │ ├── InvalidProvider.php │ │ ├── MultipleAnnotationNotAllowed.php │ │ ├── Named.php │ │ ├── NoInjectorReturn.php │ │ ├── NotBound.php │ │ ├── NotReadable.php │ │ ├── OptionalInjectionNotBound.php │ │ ├── ReadOnly.php │ │ ├── Runtime.php │ │ └── ToBinding.php │ │ ├── Forge.php │ │ ├── Injector.php │ │ ├── InjectorFactory.php │ │ ├── InjectorInterface.php │ │ ├── InstanceInterface.php │ │ ├── Locator.php │ │ ├── Logger.php │ │ ├── LoggerInterface.php │ │ ├── Module │ │ ├── InjectorModule.php │ │ ├── ModuleCacheModule.php │ │ └── Provider │ │ │ ├── BindProvider.php │ │ │ └── CompilerProvider.php │ │ ├── ModuleCacheInjector.php │ │ ├── ModuleStringer.php │ │ ├── ModuleStringerInterface.php │ │ ├── ProviderInterface.php │ │ └── Scope.php ├── test1.php ├── test2.php └── test3.php ├── symfonydi ├── container_test1.php ├── container_test4.php ├── container_test5.php ├── container_test6.php ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php ├── test1-5_results.html ├── test1-5_runner.php ├── test6_results.html ├── test6_runner.php ├── testclasses.php ├── zend-di ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php ├── test6.php └── test6a.php └── zend-servicemanager ├── test1.php ├── test2.php ├── test3.php ├── test4.php ├── test5.php └── test6.php /.gitignore: -------------------------------------------------------------------------------- 1 | composer.lock 2 | vendor/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /aura/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test1.php -------------------------------------------------------------------------------- /aura/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test2.php -------------------------------------------------------------------------------- /aura/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test3.php -------------------------------------------------------------------------------- /aura/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test4.php -------------------------------------------------------------------------------- /aura/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test5.php -------------------------------------------------------------------------------- /aura/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test6.php -------------------------------------------------------------------------------- /aura/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/aura/test6a.php -------------------------------------------------------------------------------- /auryn/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/auryn/test1.php -------------------------------------------------------------------------------- /auryn/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/auryn/test2.php -------------------------------------------------------------------------------- /auryn/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/auryn/test3.php -------------------------------------------------------------------------------- /auryn/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/auryn/test4.php -------------------------------------------------------------------------------- /auryn/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/auryn/test5.php -------------------------------------------------------------------------------- /blank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/blank.php -------------------------------------------------------------------------------- /bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/bootstrap.php -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/composer.json -------------------------------------------------------------------------------- /dice/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test1.php -------------------------------------------------------------------------------- /dice/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test2.php -------------------------------------------------------------------------------- /dice/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test3.php -------------------------------------------------------------------------------- /dice/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test4.php -------------------------------------------------------------------------------- /dice/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test5.php -------------------------------------------------------------------------------- /dice/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test6.php -------------------------------------------------------------------------------- /dice/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/dice/test6a.php -------------------------------------------------------------------------------- /laravel/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test1.php -------------------------------------------------------------------------------- /laravel/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test2.php -------------------------------------------------------------------------------- /laravel/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test3.php -------------------------------------------------------------------------------- /laravel/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test4.php -------------------------------------------------------------------------------- /laravel/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test5.php -------------------------------------------------------------------------------- /laravel/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test6.php -------------------------------------------------------------------------------- /laravel/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/laravel/test6a.php -------------------------------------------------------------------------------- /league/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test1.php -------------------------------------------------------------------------------- /league/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test2.php -------------------------------------------------------------------------------- /league/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test3.php -------------------------------------------------------------------------------- /league/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test4.php -------------------------------------------------------------------------------- /league/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test5.php -------------------------------------------------------------------------------- /league/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test6.php -------------------------------------------------------------------------------- /league/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/league/test6a.php -------------------------------------------------------------------------------- /nette/config/services.neon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/config/services.neon -------------------------------------------------------------------------------- /nette/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test1.php -------------------------------------------------------------------------------- /nette/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test2.php -------------------------------------------------------------------------------- /nette/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test3.php -------------------------------------------------------------------------------- /nette/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test4.php -------------------------------------------------------------------------------- /nette/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test5.php -------------------------------------------------------------------------------- /nette/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test6.php -------------------------------------------------------------------------------- /nette/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/nette/test6a.php -------------------------------------------------------------------------------- /njasm/Interop/Container/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Interop/Container/ContainerInterface.php -------------------------------------------------------------------------------- /njasm/Interop/Container/Exception/ContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Interop/Container/Exception/ContainerException.php -------------------------------------------------------------------------------- /njasm/Interop/Container/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Interop/Container/Exception/NotFoundException.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Adapter/AuraAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Adapter/AuraAdapter.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Adapter/PHPDIAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Adapter/PHPDIAdapter.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Adapter/PimpleAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Adapter/PimpleAdapter.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Adapter/SymfonyAdapter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Adapter/SymfonyAdapter.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Container.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/AliasBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/AliasBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/BuilderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/BuilderInterface.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/ClosureBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/ClosureBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/ObjectBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/ObjectBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/PrimitiveBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/PrimitiveBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/ProvidersBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/ProvidersBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Builder/ReflectionBuilder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Builder/ReflectionBuilder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Definition.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/DefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/DefinitionInterface.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/DefinitionType.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/DefinitionType.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/DefinitionsMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/DefinitionsMap.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Finder/AbstractFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Finder/AbstractFinder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Finder/LocalFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Finder/LocalFinder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Finder/ProvidersFinder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Finder/ProvidersFinder.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Service/DefinitionService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Service/DefinitionService.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Definition/Service/Request.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Definition/Service/Request.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Exception/ContainerException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Exception/ContainerException.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Exception/NotFoundException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Exception/NotFoundException.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Factory/FactoryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Factory/FactoryInterface.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Factory/LocalFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Factory/LocalFactory.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/Factory/ProviderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/Factory/ProviderFactory.php -------------------------------------------------------------------------------- /njasm/Njasm/Container/ServicesProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/Njasm/Container/ServicesProviderInterface.php -------------------------------------------------------------------------------- /njasm/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test1.php -------------------------------------------------------------------------------- /njasm/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test2.php -------------------------------------------------------------------------------- /njasm/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test3.php -------------------------------------------------------------------------------- /njasm/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test4.php -------------------------------------------------------------------------------- /njasm/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test5.php -------------------------------------------------------------------------------- /njasm/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test6.php -------------------------------------------------------------------------------- /njasm/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/njasm/test6a.php -------------------------------------------------------------------------------- /phalcon/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test1.php -------------------------------------------------------------------------------- /phalcon/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test2.php -------------------------------------------------------------------------------- /phalcon/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test3.php -------------------------------------------------------------------------------- /phalcon/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test4.php -------------------------------------------------------------------------------- /phalcon/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test5.php -------------------------------------------------------------------------------- /phalcon/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test6.php -------------------------------------------------------------------------------- /phalcon/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/phalcon/test6a.php -------------------------------------------------------------------------------- /php-di/config-test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/config-test3.php -------------------------------------------------------------------------------- /php-di/config-test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/config-test5.php -------------------------------------------------------------------------------- /php-di/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/config.php -------------------------------------------------------------------------------- /php-di/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test1.php -------------------------------------------------------------------------------- /php-di/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test2.php -------------------------------------------------------------------------------- /php-di/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test3.php -------------------------------------------------------------------------------- /php-di/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test4.php -------------------------------------------------------------------------------- /php-di/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test5.php -------------------------------------------------------------------------------- /php-di/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-di/test6.php -------------------------------------------------------------------------------- /php-phalcon.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php-phalcon.ini -------------------------------------------------------------------------------- /php.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/php.ini -------------------------------------------------------------------------------- /pimple/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test1.php -------------------------------------------------------------------------------- /pimple/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test2.php -------------------------------------------------------------------------------- /pimple/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test3.php -------------------------------------------------------------------------------- /pimple/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test4.php -------------------------------------------------------------------------------- /pimple/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test5.php -------------------------------------------------------------------------------- /pimple/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test6.php -------------------------------------------------------------------------------- /pimple/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/pimple/test6a.php -------------------------------------------------------------------------------- /ray/Aura/Di/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Config.php -------------------------------------------------------------------------------- /ray/Aura/Di/ConfigInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/ConfigInterface.php -------------------------------------------------------------------------------- /ray/Aura/Di/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Container.php -------------------------------------------------------------------------------- /ray/Aura/Di/ContainerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/ContainerInterface.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception/ContainerExists.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception/ContainerExists.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception/ContainerLocked.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception/ContainerLocked.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception/ContainerNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception/ContainerNotFound.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception/ServiceInvalid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception/ServiceInvalid.php -------------------------------------------------------------------------------- /ray/Aura/Di/Exception/ServiceNotFound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Exception/ServiceNotFound.php -------------------------------------------------------------------------------- /ray/Aura/Di/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Forge.php -------------------------------------------------------------------------------- /ray/Aura/Di/ForgeInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/ForgeInterface.php -------------------------------------------------------------------------------- /ray/Aura/Di/Lazy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Aura/Di/Lazy.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/Attribute.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/Attribute.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/Attributes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/Attributes.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/Enum.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/Enum.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/IgnoreAnnotation.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/Required.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/Required.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Annotation/Target.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Annotation/Target.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/AnnotationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/AnnotationException.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/AnnotationReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/AnnotationReader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/AnnotationRegistry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/AnnotationRegistry.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/CachedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/CachedReader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/DocLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/DocLexer.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/DocParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/DocParser.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/FileCacheReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/FileCacheReader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/IndexedReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/IndexedReader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/PhpParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/PhpParser.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/Reader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/Reader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/SimpleAnnotationReader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/SimpleAnnotationReader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Annotations/TokenParser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Annotations/TokenParser.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/ApcCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/ApcCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/ArrayCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/ArrayCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/Cache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/CacheProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/CacheProvider.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/CouchbaseCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/CouchbaseCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/FileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/FileCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/FilesystemCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/FilesystemCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/MemcacheCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/MemcacheCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/MemcachedCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/MemcachedCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/MongoDBCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/MongoDBCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/PhpFileCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/PhpFileCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/RedisCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/RedisCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/RiakCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/RiakCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/Version.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/WinCacheCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/WinCacheCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/XcacheCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/XcacheCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Cache/ZendDataCache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Cache/ZendDataCache.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/ClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/ClassLoader.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/CommonException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/CommonException.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Comparable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Comparable.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/EventArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/EventArgs.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/EventManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/EventManager.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/EventSubscriber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/EventSubscriber.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Lexer.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Lexer/AbstractLexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Lexer/AbstractLexer.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/NotifyPropertyChanged.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/NotifyPropertyChanged.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/PropertyChangedListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/PropertyChangedListener.php -------------------------------------------------------------------------------- /ray/Doctrine/Common/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Doctrine/Common/Version.php -------------------------------------------------------------------------------- /ray/PHPParser/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Autoloader.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Class.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Function.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Interface.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Method.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Method.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Param.php -------------------------------------------------------------------------------- /ray/PHPParser/Builder/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Builder/Property.php -------------------------------------------------------------------------------- /ray/PHPParser/BuilderAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/BuilderAbstract.php -------------------------------------------------------------------------------- /ray/PHPParser/BuilderFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/BuilderFactory.php -------------------------------------------------------------------------------- /ray/PHPParser/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Comment.php -------------------------------------------------------------------------------- /ray/PHPParser/Comment/Doc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Comment/Doc.php -------------------------------------------------------------------------------- /ray/PHPParser/Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Error.php -------------------------------------------------------------------------------- /ray/PHPParser/Lexer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Lexer.php -------------------------------------------------------------------------------- /ray/PHPParser/Lexer/Emulative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Lexer/Emulative.php -------------------------------------------------------------------------------- /ray/PHPParser/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Arg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Arg.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Const.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Array.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ArrayDimFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ArrayDimFetch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ArrayItem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ArrayItem.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Assign.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Assign.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignBitwiseAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignBitwiseAnd.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignBitwiseOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignBitwiseOr.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignBitwiseXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignBitwiseXor.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignConcat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignConcat.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignDiv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignDiv.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignMinus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignMinus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignMod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignMod.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignMul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignMul.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignPlus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignRef.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignRef.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignShiftLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignShiftLeft.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/AssignShiftRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/AssignShiftRight.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BitwiseAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BitwiseAnd.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BitwiseNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BitwiseNot.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BitwiseOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BitwiseOr.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BitwiseXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BitwiseXor.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BooleanAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BooleanAnd.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BooleanNot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BooleanNot.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/BooleanOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/BooleanOr.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Array.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Array.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Bool.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Bool.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Double.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Double.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Int.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Int.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Object.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Object.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/String.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Cast/Unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Cast/Unset.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ClassConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ClassConstFetch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Clone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Clone.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Closure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Closure.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ClosureUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ClosureUse.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Concat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Concat.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ConstFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ConstFetch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Div.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Div.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Empty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Empty.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Equal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Equal.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ErrorSuppress.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ErrorSuppress.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Eval.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Eval.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Exit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Exit.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/FuncCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/FuncCall.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Greater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Greater.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/GreaterOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/GreaterOrEqual.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Identical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Identical.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Include.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Include.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Instanceof.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Instanceof.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Isset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Isset.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/List.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/List.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/LogicalAnd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/LogicalAnd.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/LogicalOr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/LogicalOr.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/LogicalXor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/LogicalXor.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/MethodCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/MethodCall.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Minus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Minus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Mod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Mod.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Mul.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Mul.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/New.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/New.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/NotEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/NotEqual.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/NotIdentical.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/NotIdentical.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Plus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Plus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/PostDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/PostDec.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/PostInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/PostInc.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/PreDec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/PreDec.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/PreInc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/PreInc.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Print.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Print.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/PropertyFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/PropertyFetch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ShellExec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ShellExec.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ShiftLeft.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ShiftLeft.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/ShiftRight.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/ShiftRight.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Smaller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Smaller.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/SmallerOrEqual.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/SmallerOrEqual.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/StaticCall.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/StaticCall.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/StaticPropertyFetch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/StaticPropertyFetch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Ternary.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Ternary.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/UnaryMinus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/UnaryMinus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/UnaryPlus.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/UnaryPlus.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Variable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Variable.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Expr/Yield.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Expr/Yield.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Name.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Name/FullyQualified.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Name/FullyQualified.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Name/Relative.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Name/Relative.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Param.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Param.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/ClassConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/ClassConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/DNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/DNumber.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/DirConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/DirConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/Encapsed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/Encapsed.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/FileConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/FileConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/FuncConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/FuncConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/LNumber.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/LNumber.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/LineConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/LineConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/MethodConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/MethodConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/NSConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/NSConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/String.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/String.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Scalar/TraitConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Scalar/TraitConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Break.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Break.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Case.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Case.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Catch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Catch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Class.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Class.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/ClassConst.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/ClassConst.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/ClassMethod.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/ClassMethod.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Const.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Const.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Continue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Continue.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Declare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Declare.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/DeclareDeclare.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/DeclareDeclare.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Do.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Do.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Echo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Echo.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Else.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Else.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/ElseIf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/ElseIf.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/For.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/For.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Foreach.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Foreach.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Function.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Function.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Global.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Global.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Goto.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Goto.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/HaltCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/HaltCompiler.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/If.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/If.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/InlineHTML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/InlineHTML.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Interface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Interface.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Label.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Label.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Namespace.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Namespace.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Property.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Property.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/PropertyProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/PropertyProperty.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Return.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Return.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Static.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Static.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/StaticVar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/StaticVar.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Switch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Switch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Throw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Throw.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Trait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Trait.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/TraitUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/TraitUse.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/TraitUseAdaptation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/TraitUseAdaptation.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/TraitUseAdaptation/Alias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/TraitUseAdaptation/Alias.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/TraitUseAdaptation/Precedence.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/TraitUseAdaptation/Precedence.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/TryCatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/TryCatch.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Unset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Unset.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/Use.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/Use.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/UseUse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/UseUse.php -------------------------------------------------------------------------------- /ray/PHPParser/Node/Stmt/While.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Node/Stmt/While.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeAbstract.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeDumper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeDumper.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeTraverser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeTraverser.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeTraverserInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeTraverserInterface.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeVisitor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeVisitor.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeVisitor/NameResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeVisitor/NameResolver.php -------------------------------------------------------------------------------- /ray/PHPParser/NodeVisitorAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/NodeVisitorAbstract.php -------------------------------------------------------------------------------- /ray/PHPParser/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Parser.php -------------------------------------------------------------------------------- /ray/PHPParser/PrettyPrinter/Default.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/PrettyPrinter/Default.php -------------------------------------------------------------------------------- /ray/PHPParser/PrettyPrinter/Zend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/PrettyPrinter/Zend.php -------------------------------------------------------------------------------- /ray/PHPParser/PrettyPrinterAbstract.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/PrettyPrinterAbstract.php -------------------------------------------------------------------------------- /ray/PHPParser/Serializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Serializer.php -------------------------------------------------------------------------------- /ray/PHPParser/Serializer/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Serializer/XML.php -------------------------------------------------------------------------------- /ray/PHPParser/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Template.php -------------------------------------------------------------------------------- /ray/PHPParser/TemplateLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/TemplateLoader.php -------------------------------------------------------------------------------- /ray/PHPParser/Unserializer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Unserializer.php -------------------------------------------------------------------------------- /ray/PHPParser/Unserializer/XML.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/PHPParser/Unserializer/XML.php -------------------------------------------------------------------------------- /ray/Ray/Aop/AbstractMatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/AbstractMatcher.php -------------------------------------------------------------------------------- /ray/Ray/Aop/AbstractWeaved.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/AbstractWeaved.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Advice.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Advice.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Annotation.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Bind.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Bind.php -------------------------------------------------------------------------------- /ray/Ray/Aop/BindInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/BindInterface.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Compiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Compiler.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Compiler/Template.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Compiler/Template.php -------------------------------------------------------------------------------- /ray/Ray/Aop/CompilerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/CompilerInterface.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/DuplicatedNamedParam.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/DuplicatedNamedParam.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/InvalidAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/InvalidAnnotation.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/InvalidArgument.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/InvalidArgument.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/InvalidSubclassMatch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/InvalidSubclassMatch.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Exception/UndefinedProperty.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Exception/UndefinedProperty.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Interceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Interceptor.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Invocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Invocation.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Joinpoint.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Joinpoint.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Match.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Match.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Matchable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Matchable.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Matched.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Matched.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Matcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Matcher.php -------------------------------------------------------------------------------- /ray/Ray/Aop/MethodInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/MethodInterceptor.php -------------------------------------------------------------------------------- /ray/Ray/Aop/MethodInvocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/MethodInvocation.php -------------------------------------------------------------------------------- /ray/Ray/Aop/NamedArgs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/NamedArgs.php -------------------------------------------------------------------------------- /ray/Ray/Aop/NamedArgsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/NamedArgsInterface.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Pointcut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Pointcut.php -------------------------------------------------------------------------------- /ray/Ray/Aop/ReflectiveMethodInvocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/ReflectiveMethodInvocation.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Weave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Weave.php -------------------------------------------------------------------------------- /ray/Ray/Aop/WeavedInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/WeavedInterface.php -------------------------------------------------------------------------------- /ray/Ray/Aop/Weaver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Aop/Weaver.php -------------------------------------------------------------------------------- /ray/Ray/Di/AbstractCompilationLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/AbstractCompilationLogger.php -------------------------------------------------------------------------------- /ray/Ray/Di/AbstractModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/AbstractModule.php -------------------------------------------------------------------------------- /ray/Ray/Di/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Annotation.php -------------------------------------------------------------------------------- /ray/Ray/Di/AnnotationInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/AnnotationInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/AopClassLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/AopClassLoader.php -------------------------------------------------------------------------------- /ray/Ray/Di/Binder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Binder.php -------------------------------------------------------------------------------- /ray/Ray/Di/BoundDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/BoundDefinition.php -------------------------------------------------------------------------------- /ray/Ray/Di/BoundInstance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/BoundInstance.php -------------------------------------------------------------------------------- /ray/Ray/Di/BoundInstanceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/BoundInstanceInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/CacheInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/CacheInjector.php -------------------------------------------------------------------------------- /ray/Ray/Di/ClassLoaderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/ClassLoaderInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/CompilationLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/CompilationLogger.php -------------------------------------------------------------------------------- /ray/Ray/Di/CompilationLoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/CompilationLoggerInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Config.php -------------------------------------------------------------------------------- /ray/Ray/Di/Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Container.php -------------------------------------------------------------------------------- /ray/Ray/Di/Definition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Definition.php -------------------------------------------------------------------------------- /ray/Ray/Di/DependencyFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/DependencyFactory.php -------------------------------------------------------------------------------- /ray/Ray/Di/DependencyProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/DependencyProvider.php -------------------------------------------------------------------------------- /ray/Ray/Di/DependencyReference.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/DependencyReference.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/Annotation.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/ImplementedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/ImplementedBy.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/Inject.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/Inject.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/Named.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/Named.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/PostConstruct.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/PostConstruct.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/PreDestroy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/PreDestroy.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/ProvidedBy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/ProvidedBy.php -------------------------------------------------------------------------------- /ray/Ray/Di/Di/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Di/Scope.php -------------------------------------------------------------------------------- /ray/Ray/Di/DiAnnotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/DiAnnotation.php -------------------------------------------------------------------------------- /ray/Ray/Di/DiCompiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/DiCompiler.php -------------------------------------------------------------------------------- /ray/Ray/Di/EmptyModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/EmptyModule.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/Binding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/Binding.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/Compile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/Compile.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/InvalidProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/InvalidProvider.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/MultipleAnnotationNotAllowed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/MultipleAnnotationNotAllowed.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/Named.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/Named.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/NoInjectorReturn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/NoInjectorReturn.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/NotBound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/NotBound.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/NotReadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/NotReadable.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/OptionalInjectionNotBound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/OptionalInjectionNotBound.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/ReadOnly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/ReadOnly.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/Runtime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/Runtime.php -------------------------------------------------------------------------------- /ray/Ray/Di/Exception/ToBinding.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Exception/ToBinding.php -------------------------------------------------------------------------------- /ray/Ray/Di/Forge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Forge.php -------------------------------------------------------------------------------- /ray/Ray/Di/Injector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Injector.php -------------------------------------------------------------------------------- /ray/Ray/Di/InjectorFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/InjectorFactory.php -------------------------------------------------------------------------------- /ray/Ray/Di/InjectorInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/InjectorInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/InstanceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/InstanceInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Locator.php -------------------------------------------------------------------------------- /ray/Ray/Di/Logger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Logger.php -------------------------------------------------------------------------------- /ray/Ray/Di/LoggerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/LoggerInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/Module/InjectorModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Module/InjectorModule.php -------------------------------------------------------------------------------- /ray/Ray/Di/Module/ModuleCacheModule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Module/ModuleCacheModule.php -------------------------------------------------------------------------------- /ray/Ray/Di/Module/Provider/BindProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Module/Provider/BindProvider.php -------------------------------------------------------------------------------- /ray/Ray/Di/Module/Provider/CompilerProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Module/Provider/CompilerProvider.php -------------------------------------------------------------------------------- /ray/Ray/Di/ModuleCacheInjector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/ModuleCacheInjector.php -------------------------------------------------------------------------------- /ray/Ray/Di/ModuleStringer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/ModuleStringer.php -------------------------------------------------------------------------------- /ray/Ray/Di/ModuleStringerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/ModuleStringerInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/ProviderInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/ProviderInterface.php -------------------------------------------------------------------------------- /ray/Ray/Di/Scope.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/Ray/Di/Scope.php -------------------------------------------------------------------------------- /ray/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/test1.php -------------------------------------------------------------------------------- /ray/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/test2.php -------------------------------------------------------------------------------- /ray/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/ray/test3.php -------------------------------------------------------------------------------- /symfonydi/container_test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/container_test1.php -------------------------------------------------------------------------------- /symfonydi/container_test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/container_test4.php -------------------------------------------------------------------------------- /symfonydi/container_test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/container_test5.php -------------------------------------------------------------------------------- /symfonydi/container_test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/container_test6.php -------------------------------------------------------------------------------- /symfonydi/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test1.php -------------------------------------------------------------------------------- /symfonydi/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test2.php -------------------------------------------------------------------------------- /symfonydi/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test3.php -------------------------------------------------------------------------------- /symfonydi/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test4.php -------------------------------------------------------------------------------- /symfonydi/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test5.php -------------------------------------------------------------------------------- /symfonydi/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test6.php -------------------------------------------------------------------------------- /symfonydi/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/symfonydi/test6a.php -------------------------------------------------------------------------------- /test1-5_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/test1-5_results.html -------------------------------------------------------------------------------- /test1-5_runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/test1-5_runner.php -------------------------------------------------------------------------------- /test6_results.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/test6_results.html -------------------------------------------------------------------------------- /test6_runner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/test6_runner.php -------------------------------------------------------------------------------- /testclasses.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/testclasses.php -------------------------------------------------------------------------------- /zend-di/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test1.php -------------------------------------------------------------------------------- /zend-di/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test2.php -------------------------------------------------------------------------------- /zend-di/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test3.php -------------------------------------------------------------------------------- /zend-di/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test4.php -------------------------------------------------------------------------------- /zend-di/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test5.php -------------------------------------------------------------------------------- /zend-di/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test6.php -------------------------------------------------------------------------------- /zend-di/test6a.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-di/test6a.php -------------------------------------------------------------------------------- /zend-servicemanager/test1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test1.php -------------------------------------------------------------------------------- /zend-servicemanager/test2.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test2.php -------------------------------------------------------------------------------- /zend-servicemanager/test3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test3.php -------------------------------------------------------------------------------- /zend-servicemanager/test4.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test4.php -------------------------------------------------------------------------------- /zend-servicemanager/test5.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test5.php -------------------------------------------------------------------------------- /zend-servicemanager/test6.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TRPB/php-dependency-injection-benchmarks/HEAD/zend-servicemanager/test6.php --------------------------------------------------------------------------------