Download the PHP package tobento/service-resolver without Composer

On this page you can find all versions of the php package tobento/service-resolver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package service-resolver

Resolver Service

The Resolver Service is an abstraction layer of PSR-11 container.

Table of Contents

Getting started

Add the latest version of the resolver service project running this command.

Requirements

Highlights

Documentation

Implementations

Currently, there are the following implementations:

Resolver Factory

Resolver

PSR-11

Autowiring

The resolver resolves any dependencies by autowiring, except build-in parameters needs a definition to be resolved.

On union types parameter, the first resolvable parameter gets used if not set by definiton.

Definitions

By providing the resolved object:

By defining the missing parameters:

By using a closure:

You might configure which implementation to use:

Defining method calls: You will need only to define build-in parameters as others get autowired if you want to.

Prototype Definition:

You might declare the defintion as prototype, meaning returning always a new instance.

Make

The make() method works like get() except it will resolve the entry every time it is called.

Call

For more detail visit: service-autowire#call

On

With the on method, you may replace, modify or construct objects.

Replace objects

Replace object

You may replace the resolved object by simply declare a class:

Replace object by using a callable

You may replace the resolved object by using a callable. The first argument will always be the resolved object, but you can typehint any other object you may need next.

Modify objects

Modify object by using a callable

You may modify the resolved object by using a callable. The first argument will always be the resolved object, but you can typehint any other object you may need next.

Construct objects

Construct object by providing an array

You may wish to inject different implementations into each class or inject any primitive values.

Construct object by using a callable returning an array

You may wish to inject different implementations into each class or inject any primitive values by using a callable returning the resolve values. The first argument of the callable will always be the resolved object, but you can typehint any other object you may need next.

Call Methods

You may want to call methods after an object is resolved:

Declare as trait

You may calling methods when a class uses a trait:

Using Once

The on method is handled once as default. You may use the once method as to be always handled:

Using Prototype

You may using the prototype method returning always a new instance:

Using Instanceof

You may modify or replace objects when the object belongs to a specific class by using the instanceof method:

Using Priority

You may use the priority method to handle the execution order. The default priority is 1000, highest gets handled first:

Rule

You may add a rule by using the rule method:

Container

Credits


All versions of service-resolver with dependencies

PHP Build Version
Package Version
Requires php Version >=8.0
tobento/service-autowire Version ^1.0
psr/container Version ^2.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package tobento/service-resolver contains the following files

Loading the files please wait ....