History log of /web-bugs/config/container.php (Results 1 – 4 of 4)
Revision Date Author Comments
# fd1338e3 25-May-2019 Peter Kokot

Revert "Add automatic fixtures generator importer"

This reverts commit 5cdac95adc49562291a873c8704de3ceb0d9d398.

Due to the https://github.com/php/web-bugs/pull/77 discussion and

Revert "Add automatic fixtures generator importer"

This reverts commit 5cdac95adc49562291a873c8704de3ceb0d9d398.

Due to the https://github.com/php/web-bugs/pull/77 discussion and
request from a prominent member of the PHP group - Kalle - I'm reverting
this awesome addition because it caused too many conflicts and issues.
So it is not worth of investing more from my side into this neither
having a ruined experience further on from any side here.

This fix has been really helpful with some development ways but people
who maintain this app further better have peace of mind...

show more ...


# 9531cd15 22-May-2019 Pieter Hordijk

Converted the current admin pages (/admin) to use proper templates and repositories


# 5cdac95a 06-May-2019 Peter Kokot

Add automatic fixtures generator importer

When developing site locally, developer needs to have data sets to run
manual tests, see how the app is built, and similar. The new additional

Add automatic fixtures generator importer

When developing site locally, developer needs to have data sets to run
manual tests, see how the app is built, and similar. The new additional
command line command using Symfony/Console component creates a main
scripts/console entry point for running Commands. Initial set of demo
fixtures data is generated using the faker library and includes most
data needed to use and test application manually in the local
environment.

show more ...


# 5cd2630a 24-Dec-2018 Peter Kokot

Add dependency injection container

This patch introduces a dependency injection container for the PHP bug
tracker application. Container deals with the creation of all service
classe

Add dependency injection container

This patch introduces a dependency injection container for the PHP bug
tracker application. Container deals with the creation of all service
classes and additionally provides retrieving of configuration parameters.
Service classes are used everywhere in the app - from accessing database
to uploading files. Configuration parameters include infrastructure
configuration (database credentials...) and application level
configuration (directories locations...).

Container is compatible with the PSR-11 container interface defined
so it is simple to quickly understand its usage. Advanced features
such as autowiring are not included in this phase.

show more ...