Skip to content

Instantly share code, notes, and snippets.

View kklecho's full-sized avatar

Krzysztof Lechowski kklecho

  • Dublin, Ireland
View GitHub Profile
#install
composer require symfony/http-client
#use
use Symfony\Component\HttpClient\HttpClient;
$client = HttpClient::create();
$response = $client->request('GET', 'https://api.github.com/repos/symfony/symfony-docs');
$statusCode = $response->getStatusCode();
# npm perm issues when instaling packages globally,
# src: https://stackoverflow.com/questions/33725639/npm-install-g-less-does-not-work
mkdir ~/.npm-global
npm config set prefix '~/.npm-global'
echo 'export PATH=~/.npm-global/bin:$PATH' >> ~/.profile
source ~/.profile
# try:
npm install -g @vue/cli
# https://developer.okta.com/blog/2018/06/14/php-crud-app-symfony-vue
# https://bootstrap-vue.js.org/docs/components/pagination/
#console1
mkdir -p ~/Project/movb
cd ~/Project/movb
symfony new movb-server --version=lts
composer require sensio/framework-extra-bundle
composer require symfony/orm-pack
composer require symfony/maker-bundle --dev
@kklecho
kklecho / wsl_git
Created December 7, 2021 23:00
wsl git Operation Not Permitted
sudo umount /mnt/c
sudo mount -t drvfs C: /mnt/c -o metadata
source: https://askubuntu.com/questions/1115564/wsl-ubuntu-distro-how-to-solve-operation-not-permitted-on-cloning-repository