This repository demonstrates the use of Nette's Dependency Injection (DI) Container.
Dependency Injection (DI) aims to decouple classes from the responsibility of obtaining the objects they require for their operation. Such required objects are referred to as services. For an in-depth understanding, refer to the official Nette DI documentation.
Follow these steps to set up the example:
- Clone the repository:
git clone https://github.com/nette-examples/books
- Navigate to the project directory:
cd books
- Install the required dependencies:
composer install
Execute the demo using the following command:
php demo/demo.php
Ensure you have PHP version 7.2 or above installed to run the demo.