Skip to content

Commit db7f923

Browse files
authored
update root folder links (#301)
1 parent 7c56764 commit db7f923

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<br>
77
</p>
88

9-
Yii 2 Basic Project Template is a skeleton [Yii 2](http://www.yiiframework.com/) application best for
9+
Yii 2 Basic Project Template is a skeleton [Yii 2](https://www.yiiframework.com/) application best for
1010
rapidly creating small projects.
1111

1212
The template contains the basic features including user login/logout and a contact page.
@@ -45,8 +45,8 @@ INSTALLATION
4545

4646
### Install via Composer
4747

48-
If you do not have [Composer](http://getcomposer.org/), you may install it by following the instructions
49-
at [getcomposer.org](http://getcomposer.org/doc/00-intro.md#installation-nix).
48+
If you do not have [Composer](https://getcomposer.org/), you may install it by following the instructions
49+
at [getcomposer.org](https://getcomposer.org/doc/00-intro.md#installation-nix).
5050

5151
You can then install this project template using the following command:
5252

@@ -63,7 +63,7 @@ http://localhost/basic/web/
6363

6464
### Install from an Archive File
6565

66-
Extract the archive file downloaded from [yiiframework.com](http://www.yiiframework.com/download/) to
66+
Extract the archive file downloaded from [yiiframework.com](https://www.yiiframework.com/download/) to
6767
a directory named `basic` that is directly under the Web root.
6868

6969
Set cookie validation key in `config/web.php` file to some random secret string:
@@ -131,7 +131,7 @@ return [
131131
TESTING
132132
-------
133133

134-
Tests are located in `tests` directory. They are developed with [Codeception PHP Testing Framework](http://codeception.com/).
134+
Tests are located in `tests` directory. They are developed with [Codeception PHP Testing Framework](https://codeception.com/).
135135
By default, there are 3 test suites:
136136

137137
- `unit`
@@ -164,7 +164,7 @@ To execute acceptance tests do the following:
164164
composer update
165165
```
166166
167-
4. Download [Selenium Server](http://www.seleniumhq.org/download/) and launch it:
167+
4. Download [Selenium Server](https://www.seleniumhq.org/download/) and launch it:
168168
169169
```
170170
java -jar ~/selenium-server-standalone-x.xx.x.jar

requirements.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -105,22 +105,22 @@
105105
'name' => 'Memcache extension',
106106
'mandatory' => false,
107107
'condition' => extension_loaded('memcache') || extension_loaded('memcached'),
108-
'by' => '<a href="http://www.yiiframework.com/doc-2.0/yii-caching-memcache.html">MemCache</a>',
109-
'memo' => extension_loaded('memcached') ? 'To use memcached set <a href="http://www.yiiframework.com/doc-2.0/yii-caching-memcache.html#$useMemcached-detail">MemCache::useMemcached</a> to <code>true</code>.' : ''
108+
'by' => '<a href="https://www.yiiframework.com/doc-2.0/yii-caching-memcache.html">MemCache</a>',
109+
'memo' => extension_loaded('memcached') ? 'To use memcached set <a href="https://www.yiiframework.com/doc-2.0/yii-caching-memcache.html#$useMemcached-detail">MemCache::useMemcached</a> to <code>true</code>.' : ''
110110
),
111111
// CAPTCHA:
112112
array(
113113
'name' => 'GD PHP extension with FreeType support',
114114
'mandatory' => false,
115115
'condition' => $gdOK,
116-
'by' => '<a href="http://www.yiiframework.com/doc-2.0/yii-captcha-captcha.html">Captcha</a>',
116+
'by' => '<a href="https://www.yiiframework.com/doc-2.0/yii-captcha-captcha.html">Captcha</a>',
117117
'memo' => $gdMemo,
118118
),
119119
array(
120120
'name' => 'ImageMagick PHP extension with PNG support',
121121
'mandatory' => false,
122122
'condition' => $imagickOK,
123-
'by' => '<a href="http://www.yiiframework.com/doc-2.0/yii-captcha-captcha.html">Captcha</a>',
123+
'by' => '<a href="https://www.yiiframework.com/doc-2.0/yii-captcha-captcha.html">Captcha</a>',
124124
'memo' => $imagickMemo,
125125
),
126126
// PHP ini :
@@ -153,7 +153,7 @@
153153
'name' => 'APC extension',
154154
'mandatory' => false,
155155
'condition' => extension_loaded('apc'),
156-
'by' => '<a href="http://www.yiiframework.com/doc-2.0/yii-caching-apccache.html">ApcCache</a>',
156+
'by' => '<a href="https://www.yiiframework.com/doc-2.0/yii-caching-apccache.html">ApcCache</a>',
157157
);
158158
}
159159

yii

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
/**
44
* Yii console bootstrap file.
55
*
6-
* @link http://www.yiiframework.com/
6+
* @link https://www.yiiframework.com/
77
* @copyright Copyright (c) 2008 Yii Software LLC
8-
* @license http://www.yiiframework.com/license/
8+
* @license https://www.yiiframework.com/license/
99
*/
1010

1111
defined('YII_DEBUG') or define('YII_DEBUG', true);

yii.bat

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ rem -------------------------------------------------------------
44
rem Yii command line bootstrap script for Windows.
55
rem
66
rem @author Qiang Xue <[email protected]>
7-
rem @link http://www.yiiframework.com/
7+
rem @link https://www.yiiframework.com/
88
rem @copyright Copyright (c) 2008 Yii Software LLC
9-
rem @license http://www.yiiframework.com/license/
9+
rem @license https://www.yiiframework.com/license/
1010
rem -------------------------------------------------------------
1111

1212
@setlocal

0 commit comments

Comments
 (0)