├── .gitignore ├── LICENSE ├── README ├── README.1.3.x ├── composer.json ├── composer.lock ├── docs └── examples │ ├── ComponentAnnotation │ └── example.php │ ├── ConfigurationAnnotation │ └── example.php │ ├── ErrorHandler │ ├── annotated │ │ ├── example.php │ │ └── log4php.properties │ ├── beans.xml │ └── example.php │ ├── InjectAnnotation │ └── example.php │ ├── PAGI │ ├── beans.xml │ ├── example.php │ ├── file.properties │ ├── log4php.properties │ └── run.sh │ ├── PAMI │ ├── beans.xml │ └── example.php │ ├── PhpProperties │ ├── beans.xml │ ├── example.php │ └── file.properties │ ├── PropertiesAnnotation │ ├── beans.xml │ └── example.php │ ├── RequiredAnnotation │ ├── beans.xml │ └── example.php │ ├── ResourceAnnotation │ ├── beans.xml │ └── example.php │ ├── ShutdownHandler │ ├── annotated │ │ ├── example.php │ │ └── log4php.properties │ ├── beans.xml │ └── example.php │ ├── SignalHandler │ ├── annotated │ │ ├── example.php │ │ └── log4php.properties │ ├── beans.xml │ └── example.php │ ├── SyslogHelper │ ├── beans.xml │ └── example.php │ ├── TCPClientHelper │ ├── beans.xml │ ├── example.php │ └── file.properties │ ├── TCPServerHelper │ ├── beans.xml │ ├── example.php │ └── file.properties │ ├── ValueAnnotation │ └── example.php │ ├── alias-annotations │ └── example.php │ ├── alias-xml │ ├── beans.xml │ └── example.php │ ├── alias-yaml │ ├── beans.yaml │ └── example.php │ ├── aop-annotation │ ├── beans.xml │ └── example.php │ ├── aop-global │ ├── beans.xml │ └── example.php │ ├── aop-regex │ ├── beans.xml │ └── example.php │ ├── aop │ ├── beans.xml │ └── example.php │ ├── arrays │ ├── beans.xml │ └── example.php │ ├── basic-with-phar │ ├── beans.xml │ └── example.php │ ├── basic │ ├── beans.xml │ └── example.php │ ├── bookstore │ ├── README │ ├── cli-config.php │ ├── private │ │ ├── config │ │ │ ├── application.properties │ │ │ ├── doctrine.properties │ │ │ ├── log4php.properties │ │ │ └── php.properties │ │ ├── context │ │ │ ├── beans.xml │ │ │ ├── i18n.xml │ │ │ ├── mvc.xml │ │ │ └── persistence.xml │ │ ├── i18n │ │ │ ├── books_default.properties │ │ │ └── books_es_ES.properties │ │ └── src │ │ │ └── BookStore │ │ │ ├── Aspect │ │ │ ├── Profiler.php │ │ │ └── Transactional.php │ │ │ ├── Controllers │ │ │ ├── Book.php │ │ │ ├── Exception.php │ │ │ ├── Main.php │ │ │ └── Settings.php │ │ │ ├── Domain │ │ │ ├── Entity │ │ │ │ └── Book.php │ │ │ ├── Repository │ │ │ │ ├── BookRepository.php │ │ │ │ └── Configuration.php │ │ │ └── Service │ │ │ │ ├── AbstractService.php │ │ │ │ └── Book.php │ │ │ └── ErrorHandler │ │ │ └── ErrorHandler.php │ └── public │ │ ├── bootstrap.php │ │ ├── favicon.ico │ │ ├── index.php │ │ └── views │ │ ├── createBook.phtml │ │ ├── created.phtml │ │ ├── exception.phtml │ │ ├── footer.phtml │ │ ├── header.phtml │ │ ├── home.phtml │ │ ├── layout.phtml │ │ ├── list.phtml │ │ └── main.phtml │ ├── doctrine │ ├── README │ ├── beans.xml │ ├── entities │ │ └── Person.php │ ├── example.php │ └── schema.sql │ ├── events │ ├── beans.xml │ ├── beans.yaml │ └── example.php │ ├── i18n │ ├── another_bundle_es.properties │ ├── beans.xml │ ├── default_es.properties │ └── example.php │ ├── inheritance-annotations │ └── example.php │ ├── inheritance-xml │ ├── beans.xml │ └── example.php │ ├── inheritance-yaml │ ├── beans.yaml │ └── example.php │ ├── innerBeans │ ├── beans.xml │ └── example.php │ ├── lifecycle │ ├── beans.xml │ └── example.php │ ├── log4php.properties │ ├── loggeraware │ ├── beans.xml │ └── example.php │ ├── methodInjection │ ├── beans.xml │ └── example.php │ ├── mvc-interceptors │ ├── beans.xml │ ├── controllers.xml │ ├── index.php │ ├── log4php.properties │ ├── mvc.xml │ └── views │ │ ├── view.annotated.html │ │ ├── view.exception.html │ │ ├── view.json.html │ │ └── view.some.html │ ├── mvc-smarty │ ├── annotatedControllers │ │ └── someControllers.php │ ├── beans.xml │ ├── controllers.xml │ ├── example.php │ ├── log4php.properties │ ├── mvc.xml │ └── views │ │ ├── view.annotated.tpl │ │ ├── view.exception.tpl │ │ └── view.some.tpl │ ├── mvc-twig │ ├── annotatedControllers │ │ └── someControllers.php │ ├── beans.xml │ ├── controllers.xml │ ├── example.php │ ├── log4php.properties │ ├── mvc.xml │ └── views │ │ ├── view.annotated.html │ │ ├── view.exception.html │ │ └── view.some.html │ ├── mvc │ ├── annotatedControllers │ │ └── someControllers.php │ ├── beans.xml │ ├── controllers.xml │ ├── example.php │ ├── index.php │ ├── log4php.properties │ ├── mvc.xml │ └── views │ │ ├── view.annotated.html │ │ ├── view.exception.html │ │ ├── view.json.html │ │ └── view.some.html │ ├── quickstart │ ├── aspects.xml │ ├── beans.xml │ ├── example.php │ ├── factories.xml │ ├── file.properties │ ├── handlers.php │ ├── other.properties │ └── user.properties │ ├── resources-autoload │ ├── beans.xml │ ├── example.php │ └── file.properties │ ├── resources │ ├── example.php │ └── test.zip │ ├── specialValues │ ├── beans.xml │ └── example.php │ └── yaml │ ├── beans.yaml │ ├── example.php │ ├── file.properties │ └── otherBeans.yaml ├── resources ├── checkstyle.xsl ├── cpd.xslt ├── generatePackageXml.php ├── generatePhar.php ├── pdepend.xsl ├── php.ini.example ├── phpunit_to_surefire.xslt └── pmd.xslt ├── src └── mg │ └── Ding │ ├── Annotation │ ├── Annotation.php │ ├── Collection.php │ ├── Exception │ │ └── AnnotationException.php │ └── Parser.php │ ├── Aspect │ ├── AspectDefinition.php │ ├── AspectManager.php │ ├── IAspectManagerAware.php │ ├── IAspectProvider.php │ ├── IPointcutProvider.php │ ├── Interceptor │ │ ├── AdviceDefinition.php │ │ ├── DispatcherImpl.php │ │ └── IDispatcher.php │ ├── MethodInvocation.php │ ├── PointcutDefinition.php │ └── Proxy.php │ ├── Autoloader │ └── Autoloader.php │ ├── Bean │ ├── BeanConstructorArgumentDefinition.php │ ├── BeanDefinition.php │ ├── BeanPropertyDefinition.php │ ├── Factory │ │ ├── Driver │ │ │ ├── AnnotationDiscovererDriver.php │ │ │ ├── AnnotationInitDestroyMethodDriver.php │ │ │ ├── AnnotationInjectDriver.php │ │ │ ├── AnnotationRequiredDriver.php │ │ │ ├── AnnotationResourceDriver.php │ │ │ ├── AnnotationValueDriver.php │ │ │ ├── MessageSourceDriver.php │ │ │ ├── MethodInjectionDriver.php │ │ │ ├── MvcAnnotationDriver.php │ │ │ └── PropertiesDriver.php │ │ └── Exception │ │ │ ├── BeanFactoryException.php │ │ │ └── InjectByTypeException.php │ ├── IBeanDefinitionProvider.php │ ├── IBeanNameAware.php │ ├── Lifecycle │ │ ├── BeanLifecycle.php │ │ ├── BeanLifecycleManager.php │ │ ├── IAfterAssembleListener.php │ │ ├── IAfterConfigListener.php │ │ ├── IAfterCreateListener.php │ │ ├── IAfterDefinitionListener.php │ │ ├── IBeforeAssembleListener.php │ │ ├── IBeforeCreateListener.php │ │ └── ILifecycleListener.php │ └── Provider │ │ ├── Annotation.php │ │ ├── Core.php │ │ ├── Xml.php │ │ └── Yaml.php │ ├── Cache │ ├── Exception │ │ ├── CacheException.php │ │ └── FileCacheException.php │ ├── ICache.php │ ├── Impl │ │ ├── ApcCacheImpl.php │ │ ├── DummyCacheImpl.php │ │ ├── FileCacheImpl.php │ │ ├── MemcachedCacheImpl.php │ │ └── ZendCacheImpl.php │ └── Locator │ │ └── CacheLocator.php │ ├── Container │ ├── IContainer.php │ ├── IContainerAware.php │ └── Impl │ │ └── ContainerImpl.php │ ├── Exception │ └── DingException.php │ ├── Helpers │ ├── ErrorHandler │ │ └── ErrorInfo.php │ ├── Pagi │ │ ├── PagiExtensionMapper.php │ │ └── PagiHelper.php │ ├── Pami │ │ ├── IPamiEventHandler.php │ │ └── PamiHelper.php │ ├── Properties │ │ ├── IPropertiesHolder.php │ │ └── PropertiesHelper.php │ ├── Syslog │ │ └── SyslogHelper.php │ └── Tcp │ │ ├── Exception │ │ └── TcpException.php │ │ ├── ITcpClientHandler.php │ │ ├── ITcpServerHandler.php │ │ ├── TcpClientHelper.php │ │ ├── TcpPeer.php │ │ └── TcpServerHelper.php │ ├── HttpSession │ └── HttpSession.php │ ├── Logger │ └── ILoggerAware.php │ ├── MessageSource │ ├── IMessageSource.php │ ├── IMessageSourceAware.php │ └── Impl │ │ └── MessageSourceImpl.php │ ├── Mvc │ ├── Action.php │ ├── DispatchInfo.php │ ├── Dispatcher.php │ ├── Exception │ │ └── MvcException.php │ ├── ForwardModelAndView.php │ ├── Http │ │ ├── HttpAction.php │ │ ├── HttpDispatcher.php │ │ ├── HttpExceptionMapper.php │ │ ├── HttpFrontController.php │ │ ├── HttpInterceptor.php │ │ ├── HttpUrlMapper.php │ │ ├── HttpView.php │ │ ├── HttpViewRender.php │ │ ├── HttpViewResolver.php │ │ ├── SmartyViewRender.php │ │ └── TwigViewRender.php │ ├── IHandlerInterceptor.php │ ├── IMapper.php │ ├── IViewRender.php │ ├── IViewResolver.php │ ├── ModelAndView.php │ ├── RedirectModelAndView.php │ └── View.php │ ├── Reflection │ ├── IReflectionFactory.php │ ├── IReflectionFactoryAware.php │ └── ReflectionFactory.php │ └── Resource │ ├── Exception │ └── ResourceException.php │ ├── IResource.php │ ├── IResourceLoader.php │ ├── IResourceLoaderAware.php │ └── Impl │ ├── FilesystemResource.php │ ├── IncludePathResource.php │ └── URLResource.php └── test ├── annotation └── Test_Annotations.php ├── aop ├── annotation │ └── Test_Annotation_AOP.php ├── cache │ └── Test_Cache_AOP.php ├── dispatcher │ └── Test_Dispatcher.php ├── proxy │ └── Test_Proxy.php ├── xml │ └── Test_XML_AOP.php └── yaml │ └── Test_YAML_AOP.php ├── autoloader └── Test_Autoloader.php ├── aware ├── Test_AspectManager_Aware.php ├── Test_BeanName_Aware.php ├── Test_Container_Aware.php ├── Test_Lifecycle_Aware.php ├── Test_Logger_Aware.php ├── Test_MessageSource_Aware.php └── Test_ResourceLoader_Aware.php ├── bootstrap.php ├── cache ├── apc │ ├── Test_IoC_Annotation_Cache_APC.php │ └── Test_IoC_Cache_APC.php ├── dummy │ └── Test_Cache_Dummy.php ├── file │ ├── Test_IoC_Annotation_Cache_File.php │ └── Test_IoC_Cache_File.php ├── locator │ └── Test_Cache_Locator.php ├── memcached │ ├── Test_IoC_Annotation_Cache_Memcached.php │ └── Test_IoC_Cache_Memcached.php └── zfcache │ ├── Test_IoC_Annotation_Cache_ZF.php │ └── Test_IoC_Cache_ZF.php ├── container └── Test_Container.php ├── error └── Test_Error.php ├── event └── Test_Event.php ├── filter ├── xml │ └── Test_XML_Filter.php └── yaml │ └── Test_YAML_Filter.php ├── httpsession └── Test_HttpSession.php ├── i18n └── Test_i18n.php ├── ioc ├── annotation │ ├── Test_AnnotationNamespace_classes.php │ ├── Test_Annotation_IoC.php │ ├── donotscan │ ├── donotscan2.notaphp │ └── somesubdir │ │ └── emptyclassfile.php ├── xml │ └── Test_XML_IoC.php └── yaml │ └── Test_YAML_IoC.php ├── mvc ├── Test_HttpDispatcher.php ├── Test_HttpFrontController.php ├── Test_HttpView.php ├── Test_HttpViewResolver.php └── Test_ModelAndView.php ├── phpunit.xml ├── reflection └── Test_Reflection.php ├── resources-feature ├── Test_Filesystem_Resource.php ├── Test_IncludePath_Resource.php └── Test_URL_Resource.php ├── resources ├── abundle_default.properties ├── abundle_es_AR.properties ├── aop-annotation-simple.xml ├── aop-dispatcher.xml ├── aop-proxy.xml ├── aop-xml-simple.xml ├── aop-yaml-simple.yaml ├── container.xml ├── container.yaml ├── errorBeans.xml ├── events.xml ├── events.yaml ├── filter-xml-simple-holder-string.xml ├── filter-xml-simple-holder.xml ├── filter-xml-simple.xml ├── filter-yaml-file.yaml ├── filter.properties ├── frontcontroller.xml ├── frontcontroller2.xml ├── frontcontroller3.xml ├── i18n.xml ├── inject.xml ├── inject.yaml ├── ioc-xml-invalid.xml ├── ioc-xml-simple.xml ├── ioc-yaml-invalid.yaml ├── ioc-yaml-simple.yaml ├── log4php.properties ├── moreBeans │ ├── moreBeans.xml │ └── moreBeans.yaml ├── mvc.xml ├── resource-autoload.xml ├── shutdownBeans.xml ├── signalBeans.xml ├── someOtherFile.xml ├── someOtherFile.yaml ├── someresource.txt ├── syslog.xml ├── tcpclient.xml ├── tcpclientmock.xml ├── tcpserver.xml └── views │ ├── view.fwd.html │ ├── view.index.html │ ├── view.some.html │ ├── view.someException.html │ ├── view.someOtherException.html │ ├── view.someSmarty.tpl │ └── view.someTwig.html ├── shutdown └── Test_Shutdown.php ├── signal └── Test_Signal.php ├── syslog └── Test_Syslog.php └── tcp ├── Test_TCP_Client.php ├── Test_TCP_Mock.php ├── Test_TCP_Peer.php └── Test_TCP_Server.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/LICENSE -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/README -------------------------------------------------------------------------------- /README.1.3.x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/README.1.3.x -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/composer.lock -------------------------------------------------------------------------------- /docs/examples/ComponentAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ComponentAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/ConfigurationAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ConfigurationAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/ErrorHandler/annotated/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ErrorHandler/annotated/example.php -------------------------------------------------------------------------------- /docs/examples/ErrorHandler/annotated/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ErrorHandler/annotated/log4php.properties -------------------------------------------------------------------------------- /docs/examples/ErrorHandler/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ErrorHandler/beans.xml -------------------------------------------------------------------------------- /docs/examples/ErrorHandler/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ErrorHandler/example.php -------------------------------------------------------------------------------- /docs/examples/InjectAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/InjectAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/PAGI/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAGI/beans.xml -------------------------------------------------------------------------------- /docs/examples/PAGI/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAGI/example.php -------------------------------------------------------------------------------- /docs/examples/PAGI/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAGI/file.properties -------------------------------------------------------------------------------- /docs/examples/PAGI/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAGI/log4php.properties -------------------------------------------------------------------------------- /docs/examples/PAGI/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAGI/run.sh -------------------------------------------------------------------------------- /docs/examples/PAMI/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAMI/beans.xml -------------------------------------------------------------------------------- /docs/examples/PAMI/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PAMI/example.php -------------------------------------------------------------------------------- /docs/examples/PhpProperties/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PhpProperties/beans.xml -------------------------------------------------------------------------------- /docs/examples/PhpProperties/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PhpProperties/example.php -------------------------------------------------------------------------------- /docs/examples/PhpProperties/file.properties: -------------------------------------------------------------------------------- 1 | php.date.timezone = Navajo 2 | -------------------------------------------------------------------------------- /docs/examples/PropertiesAnnotation/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PropertiesAnnotation/beans.xml -------------------------------------------------------------------------------- /docs/examples/PropertiesAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/PropertiesAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/RequiredAnnotation/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/RequiredAnnotation/beans.xml -------------------------------------------------------------------------------- /docs/examples/RequiredAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/RequiredAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/ResourceAnnotation/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ResourceAnnotation/beans.xml -------------------------------------------------------------------------------- /docs/examples/ResourceAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ResourceAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/ShutdownHandler/annotated/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ShutdownHandler/annotated/example.php -------------------------------------------------------------------------------- /docs/examples/ShutdownHandler/annotated/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ShutdownHandler/annotated/log4php.properties -------------------------------------------------------------------------------- /docs/examples/ShutdownHandler/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ShutdownHandler/beans.xml -------------------------------------------------------------------------------- /docs/examples/ShutdownHandler/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ShutdownHandler/example.php -------------------------------------------------------------------------------- /docs/examples/SignalHandler/annotated/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SignalHandler/annotated/example.php -------------------------------------------------------------------------------- /docs/examples/SignalHandler/annotated/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SignalHandler/annotated/log4php.properties -------------------------------------------------------------------------------- /docs/examples/SignalHandler/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SignalHandler/beans.xml -------------------------------------------------------------------------------- /docs/examples/SignalHandler/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SignalHandler/example.php -------------------------------------------------------------------------------- /docs/examples/SyslogHelper/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SyslogHelper/beans.xml -------------------------------------------------------------------------------- /docs/examples/SyslogHelper/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/SyslogHelper/example.php -------------------------------------------------------------------------------- /docs/examples/TCPClientHelper/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPClientHelper/beans.xml -------------------------------------------------------------------------------- /docs/examples/TCPClientHelper/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPClientHelper/example.php -------------------------------------------------------------------------------- /docs/examples/TCPClientHelper/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPClientHelper/file.properties -------------------------------------------------------------------------------- /docs/examples/TCPServerHelper/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPServerHelper/beans.xml -------------------------------------------------------------------------------- /docs/examples/TCPServerHelper/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPServerHelper/example.php -------------------------------------------------------------------------------- /docs/examples/TCPServerHelper/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/TCPServerHelper/file.properties -------------------------------------------------------------------------------- /docs/examples/ValueAnnotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/ValueAnnotation/example.php -------------------------------------------------------------------------------- /docs/examples/alias-annotations/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/alias-annotations/example.php -------------------------------------------------------------------------------- /docs/examples/alias-xml/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/alias-xml/beans.xml -------------------------------------------------------------------------------- /docs/examples/alias-xml/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/alias-xml/example.php -------------------------------------------------------------------------------- /docs/examples/alias-yaml/beans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/alias-yaml/beans.yaml -------------------------------------------------------------------------------- /docs/examples/alias-yaml/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/alias-yaml/example.php -------------------------------------------------------------------------------- /docs/examples/aop-annotation/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-annotation/beans.xml -------------------------------------------------------------------------------- /docs/examples/aop-annotation/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-annotation/example.php -------------------------------------------------------------------------------- /docs/examples/aop-global/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-global/beans.xml -------------------------------------------------------------------------------- /docs/examples/aop-global/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-global/example.php -------------------------------------------------------------------------------- /docs/examples/aop-regex/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-regex/beans.xml -------------------------------------------------------------------------------- /docs/examples/aop-regex/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop-regex/example.php -------------------------------------------------------------------------------- /docs/examples/aop/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop/beans.xml -------------------------------------------------------------------------------- /docs/examples/aop/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/aop/example.php -------------------------------------------------------------------------------- /docs/examples/arrays/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/arrays/beans.xml -------------------------------------------------------------------------------- /docs/examples/arrays/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/arrays/example.php -------------------------------------------------------------------------------- /docs/examples/basic-with-phar/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/basic-with-phar/beans.xml -------------------------------------------------------------------------------- /docs/examples/basic-with-phar/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/basic-with-phar/example.php -------------------------------------------------------------------------------- /docs/examples/basic/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/basic/beans.xml -------------------------------------------------------------------------------- /docs/examples/basic/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/basic/example.php -------------------------------------------------------------------------------- /docs/examples/bookstore/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/README -------------------------------------------------------------------------------- /docs/examples/bookstore/cli-config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/cli-config.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/config/application.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/config/application.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/config/doctrine.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/config/doctrine.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/config/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/config/log4php.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/config/php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/config/php.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/context/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/context/beans.xml -------------------------------------------------------------------------------- /docs/examples/bookstore/private/context/i18n.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/context/i18n.xml -------------------------------------------------------------------------------- /docs/examples/bookstore/private/context/mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/context/mvc.xml -------------------------------------------------------------------------------- /docs/examples/bookstore/private/context/persistence.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/context/persistence.xml -------------------------------------------------------------------------------- /docs/examples/bookstore/private/i18n/books_default.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/i18n/books_default.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/i18n/books_es_ES.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/i18n/books_es_ES.properties -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Aspect/Profiler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Aspect/Profiler.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Aspect/Transactional.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Aspect/Transactional.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Controllers/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Controllers/Book.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Controllers/Exception.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Controllers/Exception.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Controllers/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Controllers/Main.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Controllers/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Controllers/Settings.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Domain/Entity/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Domain/Entity/Book.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Domain/Repository/BookRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Domain/Repository/BookRepository.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Domain/Repository/Configuration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Domain/Repository/Configuration.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Domain/Service/AbstractService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Domain/Service/AbstractService.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/Domain/Service/Book.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/Domain/Service/Book.php -------------------------------------------------------------------------------- /docs/examples/bookstore/private/src/BookStore/ErrorHandler/ErrorHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/private/src/BookStore/ErrorHandler/ErrorHandler.php -------------------------------------------------------------------------------- /docs/examples/bookstore/public/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/bootstrap.php -------------------------------------------------------------------------------- /docs/examples/bookstore/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/favicon.ico -------------------------------------------------------------------------------- /docs/examples/bookstore/public/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/index.php -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/createBook.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/createBook.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/created.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/created.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/exception.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/exception.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/footer.phtml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/header.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/header.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/home.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/home.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/layout.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/layout.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/list.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/list.phtml -------------------------------------------------------------------------------- /docs/examples/bookstore/public/views/main.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/bookstore/public/views/main.phtml -------------------------------------------------------------------------------- /docs/examples/doctrine/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/doctrine/README -------------------------------------------------------------------------------- /docs/examples/doctrine/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/doctrine/beans.xml -------------------------------------------------------------------------------- /docs/examples/doctrine/entities/Person.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/doctrine/entities/Person.php -------------------------------------------------------------------------------- /docs/examples/doctrine/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/doctrine/example.php -------------------------------------------------------------------------------- /docs/examples/doctrine/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/doctrine/schema.sql -------------------------------------------------------------------------------- /docs/examples/events/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/events/beans.xml -------------------------------------------------------------------------------- /docs/examples/events/beans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/events/beans.yaml -------------------------------------------------------------------------------- /docs/examples/events/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/events/example.php -------------------------------------------------------------------------------- /docs/examples/i18n/another_bundle_es.properties: -------------------------------------------------------------------------------- 1 | message.one = "Hola! este es otro mensaje mas {1}" 2 | -------------------------------------------------------------------------------- /docs/examples/i18n/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/i18n/beans.xml -------------------------------------------------------------------------------- /docs/examples/i18n/default_es.properties: -------------------------------------------------------------------------------- 1 | message.example = "Hola! esto es un {1} argumento" 2 | -------------------------------------------------------------------------------- /docs/examples/i18n/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/i18n/example.php -------------------------------------------------------------------------------- /docs/examples/inheritance-annotations/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/inheritance-annotations/example.php -------------------------------------------------------------------------------- /docs/examples/inheritance-xml/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/inheritance-xml/beans.xml -------------------------------------------------------------------------------- /docs/examples/inheritance-xml/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/inheritance-xml/example.php -------------------------------------------------------------------------------- /docs/examples/inheritance-yaml/beans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/inheritance-yaml/beans.yaml -------------------------------------------------------------------------------- /docs/examples/inheritance-yaml/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/inheritance-yaml/example.php -------------------------------------------------------------------------------- /docs/examples/innerBeans/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/innerBeans/beans.xml -------------------------------------------------------------------------------- /docs/examples/innerBeans/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/innerBeans/example.php -------------------------------------------------------------------------------- /docs/examples/lifecycle/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/lifecycle/beans.xml -------------------------------------------------------------------------------- /docs/examples/lifecycle/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/lifecycle/example.php -------------------------------------------------------------------------------- /docs/examples/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/log4php.properties -------------------------------------------------------------------------------- /docs/examples/loggeraware/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/loggeraware/beans.xml -------------------------------------------------------------------------------- /docs/examples/loggeraware/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/loggeraware/example.php -------------------------------------------------------------------------------- /docs/examples/methodInjection/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/methodInjection/beans.xml -------------------------------------------------------------------------------- /docs/examples/methodInjection/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/methodInjection/example.php -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/beans.xml -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/controllers.xml -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/index.php -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/log4php.properties -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/mvc.xml -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/views/view.annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/views/view.annotated.html -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/views/view.exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/views/view.exception.html -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/views/view.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/views/view.json.html -------------------------------------------------------------------------------- /docs/examples/mvc-interceptors/views/view.some.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-interceptors/views/view.some.html -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/annotatedControllers/someControllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/annotatedControllers/someControllers.php -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/beans.xml -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/controllers.xml -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/example.php -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/log4php.properties -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/mvc.xml -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/views/view.annotated.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/views/view.annotated.tpl -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/views/view.exception.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/views/view.exception.tpl -------------------------------------------------------------------------------- /docs/examples/mvc-smarty/views/view.some.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-smarty/views/view.some.tpl -------------------------------------------------------------------------------- /docs/examples/mvc-twig/annotatedControllers/someControllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/annotatedControllers/someControllers.php -------------------------------------------------------------------------------- /docs/examples/mvc-twig/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/beans.xml -------------------------------------------------------------------------------- /docs/examples/mvc-twig/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/controllers.xml -------------------------------------------------------------------------------- /docs/examples/mvc-twig/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/example.php -------------------------------------------------------------------------------- /docs/examples/mvc-twig/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/log4php.properties -------------------------------------------------------------------------------- /docs/examples/mvc-twig/mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/mvc.xml -------------------------------------------------------------------------------- /docs/examples/mvc-twig/views/view.annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/views/view.annotated.html -------------------------------------------------------------------------------- /docs/examples/mvc-twig/views/view.exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/views/view.exception.html -------------------------------------------------------------------------------- /docs/examples/mvc-twig/views/view.some.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc-twig/views/view.some.html -------------------------------------------------------------------------------- /docs/examples/mvc/annotatedControllers/someControllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/annotatedControllers/someControllers.php -------------------------------------------------------------------------------- /docs/examples/mvc/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/beans.xml -------------------------------------------------------------------------------- /docs/examples/mvc/controllers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/controllers.xml -------------------------------------------------------------------------------- /docs/examples/mvc/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/example.php -------------------------------------------------------------------------------- /docs/examples/mvc/index.php: -------------------------------------------------------------------------------- 1 | example.php -------------------------------------------------------------------------------- /docs/examples/mvc/log4php.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/log4php.properties -------------------------------------------------------------------------------- /docs/examples/mvc/mvc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/mvc.xml -------------------------------------------------------------------------------- /docs/examples/mvc/views/view.annotated.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/views/view.annotated.html -------------------------------------------------------------------------------- /docs/examples/mvc/views/view.exception.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/views/view.exception.html -------------------------------------------------------------------------------- /docs/examples/mvc/views/view.json.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/views/view.json.html -------------------------------------------------------------------------------- /docs/examples/mvc/views/view.some.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/mvc/views/view.some.html -------------------------------------------------------------------------------- /docs/examples/quickstart/aspects.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/aspects.xml -------------------------------------------------------------------------------- /docs/examples/quickstart/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/beans.xml -------------------------------------------------------------------------------- /docs/examples/quickstart/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/example.php -------------------------------------------------------------------------------- /docs/examples/quickstart/factories.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/factories.xml -------------------------------------------------------------------------------- /docs/examples/quickstart/file.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/file.properties -------------------------------------------------------------------------------- /docs/examples/quickstart/handlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/quickstart/handlers.php -------------------------------------------------------------------------------- /docs/examples/quickstart/other.properties: -------------------------------------------------------------------------------- 1 | timezone=America/Buenos_Aires 2 | -------------------------------------------------------------------------------- /docs/examples/quickstart/user.properties: -------------------------------------------------------------------------------- 1 | user.name=nobody 2 | -------------------------------------------------------------------------------- /docs/examples/resources-autoload/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/resources-autoload/beans.xml -------------------------------------------------------------------------------- /docs/examples/resources-autoload/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/resources-autoload/example.php -------------------------------------------------------------------------------- /docs/examples/resources-autoload/file.properties: -------------------------------------------------------------------------------- 1 | anUrl=http://www.google.com 2 | -------------------------------------------------------------------------------- /docs/examples/resources/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/resources/example.php -------------------------------------------------------------------------------- /docs/examples/resources/test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/resources/test.zip -------------------------------------------------------------------------------- /docs/examples/specialValues/beans.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/specialValues/beans.xml -------------------------------------------------------------------------------- /docs/examples/specialValues/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/specialValues/example.php -------------------------------------------------------------------------------- /docs/examples/yaml/beans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/yaml/beans.yaml -------------------------------------------------------------------------------- /docs/examples/yaml/example.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/yaml/example.php -------------------------------------------------------------------------------- /docs/examples/yaml/file.properties: -------------------------------------------------------------------------------- 1 | user.name=nobody 2 | -------------------------------------------------------------------------------- /docs/examples/yaml/otherBeans.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/docs/examples/yaml/otherBeans.yaml -------------------------------------------------------------------------------- /resources/checkstyle.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/checkstyle.xsl -------------------------------------------------------------------------------- /resources/cpd.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/cpd.xslt -------------------------------------------------------------------------------- /resources/generatePackageXml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/generatePackageXml.php -------------------------------------------------------------------------------- /resources/generatePhar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/generatePhar.php -------------------------------------------------------------------------------- /resources/pdepend.xsl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/pdepend.xsl -------------------------------------------------------------------------------- /resources/php.ini.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/php.ini.example -------------------------------------------------------------------------------- /resources/phpunit_to_surefire.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/phpunit_to_surefire.xslt -------------------------------------------------------------------------------- /resources/pmd.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/resources/pmd.xslt -------------------------------------------------------------------------------- /src/mg/Ding/Annotation/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Annotation/Annotation.php -------------------------------------------------------------------------------- /src/mg/Ding/Annotation/Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Annotation/Collection.php -------------------------------------------------------------------------------- /src/mg/Ding/Annotation/Exception/AnnotationException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Annotation/Exception/AnnotationException.php -------------------------------------------------------------------------------- /src/mg/Ding/Annotation/Parser.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Annotation/Parser.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/AspectDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/AspectDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/AspectManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/AspectManager.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/IAspectManagerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/IAspectManagerAware.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/IAspectProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/IAspectProvider.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/IPointcutProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/IPointcutProvider.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/Interceptor/AdviceDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/Interceptor/AdviceDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/Interceptor/DispatcherImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/Interceptor/DispatcherImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/Interceptor/IDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/Interceptor/IDispatcher.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/MethodInvocation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/MethodInvocation.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/PointcutDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/PointcutDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Aspect/Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Aspect/Proxy.php -------------------------------------------------------------------------------- /src/mg/Ding/Autoloader/Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Autoloader/Autoloader.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/BeanConstructorArgumentDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/BeanConstructorArgumentDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/BeanDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/BeanDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/BeanPropertyDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/BeanPropertyDefinition.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationDiscovererDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationDiscovererDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationInitDestroyMethodDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationInitDestroyMethodDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationInjectDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationInjectDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationRequiredDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationRequiredDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationResourceDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationResourceDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/AnnotationValueDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/AnnotationValueDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/MessageSourceDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/MessageSourceDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/MethodInjectionDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/MethodInjectionDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/MvcAnnotationDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/MvcAnnotationDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Driver/PropertiesDriver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Driver/PropertiesDriver.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Exception/BeanFactoryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Exception/BeanFactoryException.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Factory/Exception/InjectByTypeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Factory/Exception/InjectByTypeException.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/IBeanDefinitionProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/IBeanDefinitionProvider.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/IBeanNameAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/IBeanNameAware.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/BeanLifecycle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/BeanLifecycle.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/BeanLifecycleManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/BeanLifecycleManager.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IAfterAssembleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IAfterAssembleListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IAfterConfigListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IAfterConfigListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IAfterCreateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IAfterCreateListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IAfterDefinitionListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IAfterDefinitionListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IBeforeAssembleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IBeforeAssembleListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/IBeforeCreateListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/IBeforeCreateListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Lifecycle/ILifecycleListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Lifecycle/ILifecycleListener.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Provider/Annotation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Provider/Annotation.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Provider/Core.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Provider/Core.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Provider/Xml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Provider/Xml.php -------------------------------------------------------------------------------- /src/mg/Ding/Bean/Provider/Yaml.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Bean/Provider/Yaml.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Exception/CacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Exception/CacheException.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Exception/FileCacheException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Exception/FileCacheException.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/ICache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/ICache.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Impl/ApcCacheImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Impl/ApcCacheImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Impl/DummyCacheImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Impl/DummyCacheImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Impl/FileCacheImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Impl/FileCacheImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Impl/MemcachedCacheImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Impl/MemcachedCacheImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Impl/ZendCacheImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Impl/ZendCacheImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Cache/Locator/CacheLocator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Cache/Locator/CacheLocator.php -------------------------------------------------------------------------------- /src/mg/Ding/Container/IContainer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Container/IContainer.php -------------------------------------------------------------------------------- /src/mg/Ding/Container/IContainerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Container/IContainerAware.php -------------------------------------------------------------------------------- /src/mg/Ding/Container/Impl/ContainerImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Container/Impl/ContainerImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Exception/DingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Exception/DingException.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/ErrorHandler/ErrorInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/ErrorHandler/ErrorInfo.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Pagi/PagiExtensionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Pagi/PagiExtensionMapper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Pagi/PagiHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Pagi/PagiHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Pami/IPamiEventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Pami/IPamiEventHandler.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Pami/PamiHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Pami/PamiHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Properties/IPropertiesHolder.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Properties/IPropertiesHolder.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Properties/PropertiesHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Properties/PropertiesHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Syslog/SyslogHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Syslog/SyslogHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/Exception/TcpException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/Exception/TcpException.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/ITcpClientHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/ITcpClientHandler.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/ITcpServerHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/ITcpServerHandler.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/TcpClientHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/TcpClientHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/TcpPeer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/TcpPeer.php -------------------------------------------------------------------------------- /src/mg/Ding/Helpers/Tcp/TcpServerHelper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Helpers/Tcp/TcpServerHelper.php -------------------------------------------------------------------------------- /src/mg/Ding/HttpSession/HttpSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/HttpSession/HttpSession.php -------------------------------------------------------------------------------- /src/mg/Ding/Logger/ILoggerAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Logger/ILoggerAware.php -------------------------------------------------------------------------------- /src/mg/Ding/MessageSource/IMessageSource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/MessageSource/IMessageSource.php -------------------------------------------------------------------------------- /src/mg/Ding/MessageSource/IMessageSourceAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/MessageSource/IMessageSourceAware.php -------------------------------------------------------------------------------- /src/mg/Ding/MessageSource/Impl/MessageSourceImpl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/MessageSource/Impl/MessageSourceImpl.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Action.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Action.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/DispatchInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/DispatchInfo.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Dispatcher.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Exception/MvcException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Exception/MvcException.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/ForwardModelAndView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/ForwardModelAndView.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpAction.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpAction.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpDispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpDispatcher.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpExceptionMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpExceptionMapper.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpFrontController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpFrontController.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpInterceptor.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpUrlMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpUrlMapper.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpView.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpViewRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpViewRender.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/HttpViewResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/HttpViewResolver.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/SmartyViewRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/SmartyViewRender.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/Http/TwigViewRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/Http/TwigViewRender.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/IHandlerInterceptor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/IHandlerInterceptor.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/IMapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/IMapper.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/IViewRender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/IViewRender.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/IViewResolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/IViewResolver.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/ModelAndView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/ModelAndView.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/RedirectModelAndView.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/RedirectModelAndView.php -------------------------------------------------------------------------------- /src/mg/Ding/Mvc/View.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Mvc/View.php -------------------------------------------------------------------------------- /src/mg/Ding/Reflection/IReflectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Reflection/IReflectionFactory.php -------------------------------------------------------------------------------- /src/mg/Ding/Reflection/IReflectionFactoryAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Reflection/IReflectionFactoryAware.php -------------------------------------------------------------------------------- /src/mg/Ding/Reflection/ReflectionFactory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Reflection/ReflectionFactory.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/Exception/ResourceException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/Exception/ResourceException.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/IResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/IResource.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/IResourceLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/IResourceLoader.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/IResourceLoaderAware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/IResourceLoaderAware.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/Impl/FilesystemResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/Impl/FilesystemResource.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/Impl/IncludePathResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/Impl/IncludePathResource.php -------------------------------------------------------------------------------- /src/mg/Ding/Resource/Impl/URLResource.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/src/mg/Ding/Resource/Impl/URLResource.php -------------------------------------------------------------------------------- /test/annotation/Test_Annotations.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/annotation/Test_Annotations.php -------------------------------------------------------------------------------- /test/aop/annotation/Test_Annotation_AOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/annotation/Test_Annotation_AOP.php -------------------------------------------------------------------------------- /test/aop/cache/Test_Cache_AOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/cache/Test_Cache_AOP.php -------------------------------------------------------------------------------- /test/aop/dispatcher/Test_Dispatcher.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/dispatcher/Test_Dispatcher.php -------------------------------------------------------------------------------- /test/aop/proxy/Test_Proxy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/proxy/Test_Proxy.php -------------------------------------------------------------------------------- /test/aop/xml/Test_XML_AOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/xml/Test_XML_AOP.php -------------------------------------------------------------------------------- /test/aop/yaml/Test_YAML_AOP.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aop/yaml/Test_YAML_AOP.php -------------------------------------------------------------------------------- /test/autoloader/Test_Autoloader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/autoloader/Test_Autoloader.php -------------------------------------------------------------------------------- /test/aware/Test_AspectManager_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_AspectManager_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_BeanName_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_BeanName_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_Container_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_Container_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_Lifecycle_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_Lifecycle_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_Logger_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_Logger_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_MessageSource_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_MessageSource_Aware.php -------------------------------------------------------------------------------- /test/aware/Test_ResourceLoader_Aware.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/aware/Test_ResourceLoader_Aware.php -------------------------------------------------------------------------------- /test/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/bootstrap.php -------------------------------------------------------------------------------- /test/cache/apc/Test_IoC_Annotation_Cache_APC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/apc/Test_IoC_Annotation_Cache_APC.php -------------------------------------------------------------------------------- /test/cache/apc/Test_IoC_Cache_APC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/apc/Test_IoC_Cache_APC.php -------------------------------------------------------------------------------- /test/cache/dummy/Test_Cache_Dummy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/dummy/Test_Cache_Dummy.php -------------------------------------------------------------------------------- /test/cache/file/Test_IoC_Annotation_Cache_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/file/Test_IoC_Annotation_Cache_File.php -------------------------------------------------------------------------------- /test/cache/file/Test_IoC_Cache_File.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/file/Test_IoC_Cache_File.php -------------------------------------------------------------------------------- /test/cache/locator/Test_Cache_Locator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/locator/Test_Cache_Locator.php -------------------------------------------------------------------------------- /test/cache/memcached/Test_IoC_Annotation_Cache_Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/memcached/Test_IoC_Annotation_Cache_Memcached.php -------------------------------------------------------------------------------- /test/cache/memcached/Test_IoC_Cache_Memcached.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/memcached/Test_IoC_Cache_Memcached.php -------------------------------------------------------------------------------- /test/cache/zfcache/Test_IoC_Annotation_Cache_ZF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/zfcache/Test_IoC_Annotation_Cache_ZF.php -------------------------------------------------------------------------------- /test/cache/zfcache/Test_IoC_Cache_ZF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/cache/zfcache/Test_IoC_Cache_ZF.php -------------------------------------------------------------------------------- /test/container/Test_Container.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/container/Test_Container.php -------------------------------------------------------------------------------- /test/error/Test_Error.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/error/Test_Error.php -------------------------------------------------------------------------------- /test/event/Test_Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/event/Test_Event.php -------------------------------------------------------------------------------- /test/filter/xml/Test_XML_Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/filter/xml/Test_XML_Filter.php -------------------------------------------------------------------------------- /test/filter/yaml/Test_YAML_Filter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/filter/yaml/Test_YAML_Filter.php -------------------------------------------------------------------------------- /test/httpsession/Test_HttpSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/httpsession/Test_HttpSession.php -------------------------------------------------------------------------------- /test/i18n/Test_i18n.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/i18n/Test_i18n.php -------------------------------------------------------------------------------- /test/ioc/annotation/Test_AnnotationNamespace_classes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/ioc/annotation/Test_AnnotationNamespace_classes.php -------------------------------------------------------------------------------- /test/ioc/annotation/Test_Annotation_IoC.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marcelog/Ding/HEAD/test/ioc/annotation/Test_Annotation_IoC.php -------------------------------------------------------------------------------- /test/ioc/annotation/donotscan: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ioc/annotation/donotscan2.notaphp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ioc/annotation/somesubdir/emptyclassfile.php: -------------------------------------------------------------------------------- 1 |