p2made / p2y2-a6e
6 application ends for Yii 2 Advanced
Installs: 4
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
pkg:composer/p2made/p2y2-a6e
Requires
- php: >=5.6.0
- p2made/p2y2-sb-admin-theme: ^5.0
- p2made/p2y2-startbootstrap-themes: ^5.0
- p2made/p2y2-things: ^5.0
- p2made/p2y2-things-demo: ^5.0
- yiisoft/yii2: ~2.0.14
- yiisoft/yii2-swiftmailer: ~2.0.0 || ~2.1.0
This package is auto-updated.
Last update: 2025-10-02 09:04:58 UTC
README
Installation
One... create a new Yii2 Advanced project by running...
composer create-project --prefer-dist yiisoft/yii2-app-advanced yii-application
Two Before running init, either...
Depending on your Composer setup, run one of the following commands:
composer require p2made/p2y2-a6e "^5.0"
or
php composer.phar require p2made/p2y2-a6e "^5.0"
or add:
"p2made/p2y2-a6e": "^5.0"
to the requires section of your composer.json & run composer update.
p2y2-a6e installs...
p2made/p2y2-things
p2made/p2y2-things-demo
p2made/p2y2-startbootstrap-themes
p2made/p2y2-sb-admin-theme
Three... run...
cp -r ./vendor/p2made/p2y2-a6e/environments ./
The environments folder will be replaced.
Four... run ./init as usual.
Init to dev will replace some files. Select All when prompted. If you're going straight to a prod install for any reason, init to dev first so that these files do get replaced.
You now have application ends folders...
api/
assets/
backend/
frontend/
If there are any application ends that you won't use, you can delete those folders, along with some extra deletions in config edits that follow.
Four... edit some config files...
In common/config/bootstrap.php edit the last line...
Yii::setAlias('assetsUrl', 'http://static.a4e-dev.dev');
to have the URL for your static/assets application end.
If you're discarding any ends, delete the lines setting aliases for them.
In common/config/main.php edit the $_urlBase... values at the top according to your server configuration.
If you're discarding any ends, delete the corresponding lines here, & also the lines below settung urlManagers for them.
In common/config/params.php edit the reverseDomain value according to your server configuration.