You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer-php.bat 250B

1234567891011
  1. @echo off
  2. setlocal enabledelayedexpansion
  3. set BIN_DIR=%~dp0
  4. set VENDOR_DIR=%BIN_DIR%\../
  5. set DIRS=.
  6. FOR /D %%V IN (%VENDOR_DIR%\*) DO (
  7. FOR /D %%P IN (%%V\*) DO (
  8. set DIRS=!DIRS!;%%~fP
  9. )
  10. )
  11. php.exe -d include_path=!DIRS! %*