delagics / yii2-app-another
Yii 2 Another Project Template
Installs: 187
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 7
Forks: 4
Open Issues: 1
Type:project
Requires
- php: >=5.4.0
- codemix/yii2-localeurls: ~1.4
- dektrium/yii2-rbac: dev-master
- dektrium/yii2-user: 0.9.*@dev
- vlucas/phpdotenv: ~2.2
- yiisoft/yii2: ~2.0
- yiisoft/yii2-bootstrap: *
- yiisoft/yii2-swiftmailer: *
Requires (Dev)
This package is not auto-updated.
Last update: 2024-11-18 08:03:52 UTC
README
Yii 2 Another Project Template is a skeleton Yii 2 application best for developing complex Web applications with multiple tiers.
The template includes three tiers: front, back, and console, each of which is a separate Yii application.
The template is designed to work in a team development environment. It supports deploying the application in different environments.
What's inside:
- Improved project structure (see Directory structure);
- Language management through URLs with help of codemix/yii2-localeurls;
- Flexible user registration and authentication module (dektrium/yii2-user);
- RBAC management module (dektrium/yii2-rbac);
yii init
console command which simplifies project preparation;- PHP dotenv support, for easier project configuration, with Laravel like environment variable getter:
env('YII_ENV', 'dev')
;
Note: tests are currently not included.
Requirements
The minimum requirement by this project template is that your Web server supports PHP 5.4.0. Recommended is PHP 7.
Installation
Install using composer
If you do not have Composer, follow the instructions in the Installing Yii section of the definitive guide to install it.
With Composer installed, you can then install the application using the following commands:
composer global require "fxp/composer-asset-plugin:~1.2"
composer create-project --prefer-dist delagics/yii2-app-another another.dev
The first command installs the composer asset plugin
which allows managing bower and npm package dependencies through Composer. You only need to run this command
once for all. The second command installs the another application in a directory named another.dev
.
You can choose a different directory name if you want.
Then follow the instructions given in the Preparing application section.
Install with git
Clone repository as a web root.
git clone git@github.com:delagics/yii2-app-another.git another.dev
Directory named
another.dev
is your Web root.
Then install the composer asset plugin,
go to the web root folder in a console terminal and run composer install
:
composer global require "fxp/composer-asset-plugin:~1.2"
cd /var/www/another.dev
composer install
Then follow the instructions given in the Preparing application section.
Preparing application
After you install the application, you have to conduct the following steps to initialize the installed application. You only need to do these once for all.
-
Create a new database.
-
Open a console terminal in the root directory of your project and execute the
php yii init/environment && php yii init/initialize
command, and follow the steps of the script.
When switching to production environment, execute php yii init/env
and choose PROD
environment.
php yii init/env
-
Set document roots of your web server:
- for
/path/to/another.dev/public/
and using the URLhttp://another.dev/
For nginx it could be the following:
- for
server { listen 80; charset utf-8; client_max_body_size 128M; root /var/www/another.dev/public; server_name another.dev www.another.dev; index index.php index.html index.htm; # access_log /var/www/another.dev/logs/access_log.txt; # error_log /var/www/another.dev/logs/error_log.txt error; location / { try_files $uri $uri/ /index.php?$args; } location /admin { try_files $uri $uri/ /admin/index.php?$args; } location ~ \.php$ { #NOTE: You should have "cgi.fix_pathinfo = 0;" in php.ini try_files $uri =404; include fastcgi_params; fastcgi_index index.php; fastcgi_pass unix:/var/run/php/php7.0-fpm.sock; fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; } location /storage { # Deny access to any files with a .php extension in the storage directory location ~ \.php$ { deny all; } location ~* ^/.+\.(ogg|ogv|svg|svgz|eot|otf|woff|mp4|ttf|rss|atom|jpg|jpeg|gif|png|ico|zip|tgz|gz|rar|bz2|doc|xls|exe|ppt|tar|mid|midi|wav|bmp|rtf)$ { expires max; add_header Cache-Control public; log_not_found off; access_log off; } } # Deny all attempts to access hidden files and folders such as .git, .htaccess, .htpasswd, .DS_Store. location ~ /\. { deny all; } location = /favicon.ico { log_not_found off; access_log off; } location = /robots.txt { allow all; log_not_found off; access_log off; } }
-
Change the hosts file to point the domain to your server.
- Windows:
c:\Windows\System32\Drivers\etc\hosts
- Linux:
/etc/hosts
Add the following lines:
127.0.0.1 another.dev
- Windows:
To login into the application, use your username and password created when running php yii init/up
command, or sing up with new credentials.
Generating apps translations
# For frontend:
php yii message app/front/messages/config.php
# For backend:
php yii message app/back/messages/config.php
Directory structure
app/
base/ contains classes shared between all apps
config/ contains shared configurations
mail/ contains view files for e-mails
models/ contains model classes used in both backend and frontend apps
console/ contains classes for the console app
config/ contains console configurations
controllers/ contains console controllers (commands)
migrations/ contains database migrations
models/ contains console-specific model classes
runtime/ contains files generated during runtime
back/ contains classes for the backend app
assets/ contains backend app assets
config/ contains backend configurations
controllers/ contains backend Web controller classes
models/ contains backend-specific model classes
runtime/ contains files generated during backend app runtime
views/ contains view files for the backend Web app
front/ contains classes for the frontend app
assets/ contains frontend app assets
config/ contains frontend configurations
controllers/ contains frontend Web controller classes
models/ contains frontend-specific model classes
runtime/ contains files generated during frontend app runtime
views/ contains view files for the frontend Web app
widgets/ contains frontend widgets
vendor/ contains dependent 3rd-party packages
public/ contains the entry script and Web resources for the frontend app
storage/ contains files such as user uploaded images, docs, archives shared between all appliactions
admin/ contains the entry script and Web resources for the backend app
assets/ contains Web resources published by AssetBundles of backend app
index.php contains the entry script of the backend app
assets/ contains Web resources published by AssetBundles of the frontend app
index.php contains the entry script of the frontend app
.env.example contains template for a dotenv file.
Made with ❤️ by @delagics