kokst / kok
Kok.
Installs: 23
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 1
Open Issues: 0
Type:project
Requires
- php: ^7.2.0
- ecrmnn/laravel-https: ^1.0
- fideloper/proxy: ^4.0
- kokst/core: ^2.0
- laracasts/flash: ^3.0
- laravel/framework: 5.8.*
- laravel/tinker: ^1.0
- laravelcollective/html: ^5.7
- laravolt/avatar: ^2.1
- lavary/laravel-menu: ^1.7
- nwidart/laravel-modules: ^5.0
- spatie/laravel-permission: ^2.37
- thecodingmachine/safe: ^0.1.11
Requires (Dev)
- beyondcode/laravel-dump-server: ^1.0
- beyondcode/laravel-query-detector: ^1.0
- dczajkowski/auth-tests: ^5.8
- filp/whoops: ^2.0
- fzaninotto/faker: ^1.4
- laravel/homestead: ^9.0
- mockery/mockery: ^1.0
- nunomaduro/collision: ^3.0
- nunomaduro/larastan: ^0.4.0
- phpunit/phpunit: ^8.0
- stechstudio/laravel-php-cs-fixer: ^1.1
- thecodingmachine/phpstan-safe-rule: ^0.1.3
- dev-master
- v0.1.0
- dev-dependabot/composer/fzaninotto/faker-1.9.2
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/composer/laravel/framework-6.20.7
- dev-dependabot/composer/laravolt/avatar-4.0.0
- dev-dependabot/composer/laravel/homestead-11.2.4
- dev-dependabot/composer/phpunit/phpunit-9.4.0
- dev-dependabot/composer/nwidart/laravel-modules-8.2.0
- dev-dependabot/composer/spatie/laravel-permission-3.18.0
- dev-dependabot/npm_and_yarn/cross-env-7.0.3
- dev-dependabot/npm_and_yarn/axios-0.21.0
- dev-dependabot/npm_and_yarn/vue-i18n-8.22.2
- dev-dependabot/npm_and_yarn/http-proxy-1.18.1
- dev-dependabot/npm_and_yarn/jquery-3.5.0
- dev-dependabot/npm_and_yarn/jquery-3.4.0
- dev-laravel
This package is auto-updated.
Last update: 2020-12-12 16:45:12 UTC
README
Setup
Create a new Kok project by issuing the following commands in your terminal:
composer create-project kokst/kok <folder> <release>
cd <folder>
yarn --no-bin-links
yarn prod
Development
Mac:
php vendor/bin/homestead make
Also make sure that NFS over UDP is turned on.
Windows:
vendor\\bin\\homestead make
vagrant plugin install vagrant-vbguest
vagrant plugin install vagrant-winnfsd
Adjust Homestead.yaml
if necessary
vagrant up
vagrant ssh
cd code
artisan migrate
Xdebug + VS Code
VS Code Extension: PHP Debug
Chrome Extension: Xdebug helper
Firefox Extension: Xdebug Helper
sudo nano /etc/php/7.3/cli/conf.d/20-xdebug.ini
xdebug.remote_enable = true
xdebug.remote_autostart = true
xdebug.remote_host = 10.0.2.2
xdebug.remote_port = 9000
xdebug.max_nesting_level = 1000
sudo service php7.3-fpm restart