framework
parents
Showing
.bowerrc
0 → 100644
.gitignore
0 → 100644
LICENSE.md
0 → 100644
README.md
0 → 100644
assets/AppAsset.php
0 → 100644
codeception.yml
0 → 100644
commands/HelloController.php
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "yiisoft/yii2-app-basic", | ||
| "description": "Yii 2 Basic Project Template", | ||
| "keywords": ["yii2", "framework", "basic", "project template"], | ||
| "homepage": "http://www.yiiframework.com/", | ||
| "type": "project", | ||
| "license": "BSD-3-Clause", | ||
| "support": { | ||
| "issues": "https://github.com/yiisoft/yii2/issues?state=open", | ||
| "forum": "http://www.yiiframework.com/forum/", | ||
| "wiki": "http://www.yiiframework.com/wiki/", | ||
| "irc": "irc://irc.freenode.net/yii", | ||
| "source": "https://github.com/yiisoft/yii2" | ||
| }, | ||
| "minimum-stability": "stable", | ||
| "require": { | ||
| "php": ">=5.4.0", | ||
| "yiisoft/yii2": "~2.0.5", | ||
| "yiisoft/yii2-bootstrap": "~2.0.0", | ||
| "yiisoft/yii2-swiftmailer": "~2.0.0" | ||
| }, | ||
| "require-dev": { | ||
| "yiisoft/yii2-debug": "~2.0.0", | ||
| "yiisoft/yii2-gii": "~2.0.0", | ||
| "yiisoft/yii2-faker": "~2.0.0", | ||
| "codeception/base": "^2.2.3", | ||
| "codeception/verify": "~0.3.1", | ||
| "codeception/specify": "~0.4.3" | ||
| }, | ||
| "config": { | ||
| "process-timeout": 1800 | ||
| }, | ||
| "scripts": { | ||
| "post-create-project-cmd": [ | ||
| "yii\\composer\\Installer::postCreateProject" | ||
| ] | ||
| }, | ||
| "extra": { | ||
| "yii\\composer\\Installer::postCreateProject": { | ||
| "setPermission": [ | ||
| { | ||
| "runtime": "0777", | ||
| "web/assets": "0777", | ||
| "yii": "0755" | ||
| } | ||
| ], | ||
| "generateCookieValidationKey": [ | ||
| "config/web.php" | ||
| ] | ||
| }, | ||
| "asset-installer-paths": { | ||
| "npm-asset-library": "vendor/npm", | ||
| "bower-asset-library": "vendor/bower" | ||
| } | ||
| } | ||
| } |
composer.lock
0 → 100644
This source diff could not be displayed because it is too large.
You can
view the blob
instead.
config/console.php
0 → 100644
config/db.php
0 → 100644
config/params.php
0 → 100644
config/test.php
0 → 100644
config/test_db.php
0 → 100644
config/web.php
0 → 100644
controllers/SiteController.php
0 → 100644
mail/layouts/html.php
0 → 100644
models/ContactForm.php
0 → 100644
models/LoginForm.php
0 → 100644
models/User.php
0 → 100644
requirements.php
0 → 100644
runtime/.gitignore
0 → 100644
tests/_bootstrap.php
0 → 100644
tests/_data/.gitignore
0 → 100644
tests/_output/.gitignore
0 → 100644
tests/_support/AcceptanceTester.php
0 → 100644
tests/_support/FunctionalTester.php
0 → 100644
tests/_support/UnitTester.php
0 → 100644
tests/acceptance.suite.yml.example
0 → 100644
tests/acceptance/AboutCest.php
0 → 100644
tests/acceptance/ContactCest.php
0 → 100644
tests/acceptance/HomeCest.php
0 → 100644
tests/acceptance/LoginCest.php
0 → 100644
tests/acceptance/_bootstrap.php
0 → 100644
tests/bin/yii
0 → 100755
tests/bin/yii.bat
0 → 100644
tests/functional.suite.yml
0 → 100644
tests/functional/ContactFormCest.php
0 → 100644
tests/functional/LoginFormCest.php
0 → 100644
tests/functional/_bootstrap.php
0 → 100644
tests/unit.suite.yml
0 → 100644
tests/unit/_bootstrap.php
0 → 100644
tests/unit/models/ContactFormTest.php
0 → 100644
tests/unit/models/LoginFormTest.php
0 → 100644
tests/unit/models/UserTest.php
0 → 100644
views/layouts/main.php
0 → 100644
views/site/about.php
0 → 100644
views/site/contact.php
0 → 100644
views/site/error.php
0 → 100644
views/site/index.php
0 → 100644
views/site/login.php
0 → 100644
web/assets/.gitignore
0 → 100644
web/css/site.css
0 → 100644
web/favicon.ico
0 → 100644
File added
web/index-test.php
0 → 100644
web/index.php
0 → 100644
web/robots.txt
0 → 100644
yii
0 → 100755
yii.bat
0 → 100644
Please
register
or
sign in
to comment