This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// in a config/autoload/*.global.php file: | |
declare(strict_types=1); | |
use App\Authentication\LoginAdapter; | |
use Zend\Expressive\Authentication\AuthenticationInterface; | |
use Zend\Expressive\Authentication\UserRepositoryInterface; | |
use Zend\Expressive\Authentication\UserRepository\PdoDatabase; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Xdebug] | |
;zend_extension= | |
; When this setting is set to on, the tracing of function calls will be enabled | |
; just before the script is run. This makes it possible to trace code in the | |
; auto_prepend_file. | |
; | |
; Type: boolean | |
; Default value: 0 | |
;xdebug.auto_trace= |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ECHO OFF | |
SETLOCAL | |
IF [%TERMINATE_BATCH_SCRIPT%] == [YES] ( | |
%~dp0php.exe -c %~dp0php.ini-xdebug %* | |
) ELSE ( | |
SET TERMINATE_BATCH_SCRIPT=YES | |
CALL %0 %* <NUL | |
) |