slavavitrenko 8 年之前
父節點
當前提交
d47db0dfec
共有 5 個文件被更改,包括 0 次插入63 次删除
  1. 0 6
      .gitattributes
  2. 0 7
      .github/CONTRIBUTING.md
  3. 0 14
      .github/ISSUE_TEMPLATE.md
  4. 0 7
      .github/PULL_REQUEST_TEMPLATE.md
  5. 0 29
      .travis.yml

+ 0 - 6
.gitattributes

@@ -1,6 +0,0 @@
-# Ignore all test and documentation for archive
-/.github            export-ignore
-/.gitattributes     export-ignore
-/.scrutinizer.yml   export-ignore
-/.travis.yml        export-ignore
-/docs               export-ignore

+ 0 - 7
.github/CONTRIBUTING.md

@@ -1,7 +0,0 @@
-Contributing to Yii2
-====================
-
-- [Report an issue](https://github.com/yiisoft/yii2/blob/master/docs/internals/report-an-issue.md)
-- [Translate documentation or messages](https://github.com/yiisoft/yii2/blob/master/docs/internals/translation-workflow.md)
-- [Give us feedback or start a design discussion](http://www.yiiframework.com/forum/index.php/forum/42-general-discussions-for-yii-20/)
-- [Contribute to the core code or fix bugs](https://github.com/yiisoft/yii2/blob/master/docs/internals/git-workflow.md)

+ 0 - 14
.github/ISSUE_TEMPLATE.md

@@ -1,14 +0,0 @@
-### What steps will reproduce the problem?
-
-### What's expected?
-
-### What do you get instead?
-
-
-### Additional info
-
-| Q                | A
-| ---------------- | ---
-| Yii vesion       |
-| PHP version      |
-| Operating system |

+ 0 - 7
.github/PULL_REQUEST_TEMPLATE.md

@@ -1,7 +0,0 @@
-| Q             | A
-| ------------- | ---
-| Is bugfix?    | yes/no
-| New feature?  | yes/no
-| Breaks BC?    | yes/no
-| Tests pass?   | yes/no
-| Fixed issues  | comma-separated list of tickets # fixed by the PR, if any

+ 0 - 29
.travis.yml

@@ -1,29 +0,0 @@
-language: php
-
-php:
-  - 5.4
-  - 5.5
-  - 5.6
-  - 7.0
-#  - hhvm
-
-# faster builds on new travis setup not using sudo
-sudo: false
-
-# cache vendor dirs
-cache:
-  directories:
-    - $HOME/.composer/cache
-
-install:
-  - travis_retry composer self-update && composer --version
-  - travis_retry composer global require "fxp/composer-asset-plugin:~1.3.1"
-  - travis_retry composer update --dev --prefer-dist --no-interaction
-# setup application:
-  - |
-    sed -i "s/'cookieValidationKey' => ''/'cookieValidationKey' => 'testkey'/" config/web.php
-
-script:
-  - |
-    php -S localhost:8080 -t web > /dev/null 2>&1 &
-    vendor/bin/codecept run