Created
September 12, 2023 11:55
-
-
Save mche/77eee9fb0243d812505cd15fca6af151 to your computer and use it in GitHub Desktop.
PHP install in local dir в локальной папке
This file contains 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
* скачал https://getcomposer.org/installer назвал composer-setup.php | |
* настроил локальный .\php.ini | |
* extension_dir = "ext" | |
* extension=openssl | |
* Запуск инсталла композера | |
* .\php.exe -c .\php.ini .\composer-setup.php | |
* Установка модулей composer.json (там прописал https://github.com/Corveda/PHPSandbox#installation) | |
* .\php.exe -c .\php.ini .\composer.phar install --dry-run | |
* .\php.exe -c .\php.ini .\composer.phar install | |
* Проверка .\php.exe -c .\php.ini .\composer.phar show | |
* .\php.exe -r 'echo json_encode(require(\"C:/Projects/Foo/protected/config/local.php\"));' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment