Skip to content

Instantly share code, notes, and snippets.

@maranemil
Created January 1, 2019 12:11
Show Gist options
  • Save maranemil/f3617395fe871e7def0ef558ac6dad72 to your computer and use it in GitHub Desktop.
Save maranemil/f3617395fe871e7def0ef558ac6dad72 to your computer and use it in GitHub Desktop.
PHP Frameworks Install
---
sudo apt install composer
sudo apt install php7.2-intl php7.2-mysql
sudo apt install php7.2-mbstring
sudo apt install php7.2-xml
sudo apt install php7.2-zip
////
# https://book.cakephp.org/3.0/en/installation.html
composer create-project --prefer-dist cakephp/app todo_cakephp
chmod +x bin/cake
bin/cake server
bin/cake server -H 192.168.13.37 -p 5673
////
# http://www.slimframework.com/docs/v3/start/installation.html
composer require slim/slim "^3.0"
php -S localhost:8080
///
# https://framework.zend.com/downloads
# https://framework.zend.com/learn
# https://docs.zendframework.com/tutorials/getting-started/skeleton-application/
composer require zendframework/zendframework
php -S 0.0.0.0:8080 -t public
php -S 0.0.0.0:8080 -t public public/index.php
////
https://www.codeigniter.com/docs
https://www.codeigniter.com/download
https://www.codeigniter.com/user_guide/database/configuration.html
https://www.codeigniter.com/user_guide/tutorial/create_news_items.html
https://www.codeigniter.com/user_guide/tutorial/news_section.html
https://www.codeigniter.com/user_guide/tutorial/static_pages.html
https://www.codeigniter.com/user_guide/
https://github.com/benedmunds/CodeIgniter-Ion-Auth
https://github.com/abedputra/Dnato-system-login
https://github.com/trafficinc/CodeIgniter-Authit
////
# https://symfony.com/doc
# https://symfony.com/doc/master/page_creation.html
composer create-project symfony/skeleton sy_todo -s dev
# http://localhost/web/sy_code/sy_todo/public/
////
# https://laravel.com/docs/5.7#installing-laravel
# https://laravel.com/docs/5.7/middleware
# https://laravel.com/docs/5.7/controllers
# https://laravel.com/docs/5.7/routing
composer global require laravel/installer
composer create-project --prefer-dist laravel/laravel blog
chmod -R 0777 storage/
chmod -R 0777 bootstrap/
http://localhost/web/laravel_todo/blog/public/
php artisan key:generate
php artisan make:middleware CheckAge
////
https://getbootstrap.com/docs/4.0/getting-started/introduction/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment