├── LICENSE.md ├── README.md ├── composer.json ├── psalm.xml └── src ├── Definition ├── FactoryDefinition.php ├── ObjectDefinition.php ├── Traits │ ├── ArgumentsTrait.php │ └── ShareTrait.php └── ValueDefinition.php ├── DefinitionInterface.php ├── Exception ├── DefinitionException.php └── ResolverException.php ├── InvokerInterface.php ├── Resolver.php ├── ResolverInterface.php └── functions.php /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/composer.json -------------------------------------------------------------------------------- /psalm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/psalm.xml -------------------------------------------------------------------------------- /src/Definition/FactoryDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Definition/FactoryDefinition.php -------------------------------------------------------------------------------- /src/Definition/ObjectDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Definition/ObjectDefinition.php -------------------------------------------------------------------------------- /src/Definition/Traits/ArgumentsTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Definition/Traits/ArgumentsTrait.php -------------------------------------------------------------------------------- /src/Definition/Traits/ShareTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Definition/Traits/ShareTrait.php -------------------------------------------------------------------------------- /src/Definition/ValueDefinition.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Definition/ValueDefinition.php -------------------------------------------------------------------------------- /src/DefinitionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/DefinitionInterface.php -------------------------------------------------------------------------------- /src/Exception/DefinitionException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Exception/DefinitionException.php -------------------------------------------------------------------------------- /src/Exception/ResolverException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Exception/ResolverException.php -------------------------------------------------------------------------------- /src/InvokerInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/InvokerInterface.php -------------------------------------------------------------------------------- /src/Resolver.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/Resolver.php -------------------------------------------------------------------------------- /src/ResolverInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/ResolverInterface.php -------------------------------------------------------------------------------- /src/functions.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acelot/resolver/HEAD/src/functions.php --------------------------------------------------------------------------------