Skip to content

Commit 49cadd2

Browse files
committed
Update links to https
1 parent df119b0 commit 49cadd2

11 files changed

+27
-27
lines changed

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Copyright (c) 2013 Josh Lockhart
22

3-
http://creativecommons.org/licenses/by-nc-sa/3.0/
3+
https://creativecommons.org/licenses/by-nc-sa/3.0/

_posts/01-06-01-Common-Directory-Structure.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ For each team, CMS, or framework one works in, a standard directory structure is
1414

1515
[Paul M. Jones] has done some fantastic research into common practices of tens of thousands of github projects in the realm of PHP. He has compiled a standard file and directory structure, the [Standard PHP Package Skeleton], based on this research. In this directory structure, `DocumentRoot` should point to `public/`, unit tests should be in the `tests/` directory, and third party libraries, as installed by [composer], belong in the `vendor/` directory. For other files and directories, abiding by the [Standard PHP Package Skeleton] will make the most sense to contributors of a project.
1616

17-
[Paul M. Jones]: http://paul-m-jones.com/
17+
[Paul M. Jones]: https://paul-m-jones.com/
1818
[Standard PHP Package Skeleton]: https://github.com/php-pds/skeleton
1919
[Composer]: /#composer_and_packagist

_posts/05-06-01-Internationalization-and-Localization.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -403,7 +403,7 @@ After including those new rules in the `.po` file, a new scan will bring in your
403403
[poedit_download]: https://poedit.net/download
404404
[lingohub]: https://lingohub.com/blog/2013/07/php-internationalization-with-gettext-tutorial/
405405
[lingohub_plurals]: https://lingohub.com/blog/2013/07/php-internationalization-with-gettext-tutorial/#Plurals
406-
[plural]: http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html
406+
[plural]: https://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html
407407
[gettext]: https://en.wikipedia.org/wiki/Gettext
408408
[manual]: https://www.gnu.org/software/gettext/manual/gettext.html
409409
[639-1]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes

_posts/07-05-01-Abstraction-Layers.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ installed in any application you like:
2828
[4]: https://packages.zendframework.com/docs/latest/manual/en/index.html#zendframework/zend-db
2929
[5]: https://atlasphp.io
3030
[6]: https://github.com/auraphp/Aura.Sql
31-
[7]: http://propelorm.org/
31+
[7]: https://propelorm.org/
3232
[8]: https://medoo.in/
3333
[psr0]: https://www.php-fig.org/psr/psr-0/
3434
[psr4]: https://www.php-fig.org/psr/psr-4/

_posts/08-03-01-Plain-PHP-Templates.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -62,5 +62,5 @@ Using the [Plates][plates] library.
6262
{% endhighlight %}
6363

6464

65-
[plates]: http://platesphp.com/
65+
[plates]: https://platesphp.com/
6666
[aura]: https://github.com/auraphp/Aura.View

_posts/08-05-01-Further-Reading.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ anchor: templating_further_reading
2323
* [Latte](https://github.com/nette/latte) *(compiled)*
2424
* [Mustache](https://github.com/bobthecow/mustache.php) *(compiled)*
2525
* [PHPTAL](https://phptal.org/) *(compiled)*
26-
* [Plates](http://platesphp.com/) *(native)*
26+
* [Plates](https://platesphp.com/) *(native)*
2727
* [Smarty](https://www.smarty.net/) *(compiled)*
2828
* [Twig](https://twig.symfony.com/) *(compiled)*
2929
* [Zend-View](https://docs.zendframework.com/zend-view/) *(native, framework specific)*

_posts/13-02-01-Vagrant.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ it can be used to deploy to cloud services as well. The provisioning is made wit
2828
[Puppet]: https://puppet.com/
2929
[Chef]: https://www.chef.io/
3030
[Puphpet]: https://github.com/puphpet/puphpet
31-
[Phansible]: http://phansible.com/
31+
[Phansible]: https://phansible.com/

_posts/15-02-01-PHPDoc.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Below is an example of how you might document a class with a few methods;
1515
<?php
1616
/**
1717
* @author A Name <[email protected]>
18-
* @link http://www.phpdoc.org/docs/latest/index.html
18+
* @link https://www.phpdoc.org/docs/latest/index.html
1919
*/
2020
class DateTimeHelper
2121
{

_posts/16-07-01-Components.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ components best decoupled from the Laravel framework are listed above._
4444
[PEAR]: /#pear
4545
[Dependency Management]: /#dependency_management
4646
[FuelPHP Validation package]: https://github.com/fuelphp/validation
47-
[Aura]: http://auraphp.com/framework/
47+
[Aura]: https://auraphp.com/framework/
4848
[FuelPHP]: https://github.com/fuelphp
4949
[Hoa Project]: https://github.com/hoaproject
5050
[Symfony Components]: https://symfony.com/components

_posts/16-10-01-Books.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ book to be added, send a PR and it will be reviewed for relevancy.
1212

1313
### Free Books
1414

15-
* [PHP Pandas](http://daylerees.com/php-pandas/) - Aims to teach everyone how to be a web developer.
15+
* [PHP Pandas](https://daylerees.com/php-pandas/) - Aims to teach everyone how to be a web developer.
1616
* [PHP The Right Way](https://leanpub.com/phptherightway/) - This website is available as a book completely for free.
1717
* [Using Libsodium in PHP Projects](https://paragonie.com/book/pecl-libsodium) - Guide to using Libsodium PHP extension
1818
for modern, secure, and fast cryptography.
@@ -28,7 +28,7 @@ developer usually acquires over years of experience, all condensed down into one
2828
small, specific steps
2929
* [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - A guide to some of the most common
3030
security terms and provides some examples of them in every day PHP
31-
* [Scaling PHP](http://www.scalingphpbook.com/) - Stop playing sysadmin and get back to coding
31+
* [Scaling PHP](https://www.scalingphpbook.com/) - Stop playing sysadmin and get back to coding
3232
* [Signaling PHP](https://leanpub.com/signalingphp) - PCNLT signals are a great help when writing PHP scripts that
3333
run from the command line.
3434
* [Minimum Viable Tests](https://leanpub.com/minimumviabletests) - Long-time PHP testing evangelist Chris Hartjes goes over what he feels is the minimum you need to know to get started.

banners.md

+16-16
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
1414
<p><img src="/images/banners/btn1-120x90.png" alt="PHP: The Right Way"/></p>
1515

1616
{% highlight html %}
17-
<a href="http://www.phptherightway.com">
18-
<img src="http://www.phptherightway.com/images/banners/btn1-120x90.png" alt="PHP: The Right Way"/>
17+
<a href="https://www.phptherightway.com">
18+
<img src="https://www.phptherightway.com/images/banners/btn1-120x90.png" alt="PHP: The Right Way"/>
1919
</a>
2020
{% endhighlight %}
2121

@@ -24,8 +24,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
2424
<p><img src="/images/banners/btn2-120x60.png" alt="PHP: The Right Way"/></p>
2525

2626
{% highlight html %}
27-
<a href="http://www.phptherightway.com">
28-
<img src="http://www.phptherightway.com/images/banners/btn2-120x60.png" alt="PHP: The Right Way"/>
27+
<a href="https://www.phptherightway.com">
28+
<img src="https://www.phptherightway.com/images/banners/btn2-120x60.png" alt="PHP: The Right Way"/>
2929
</a>
3030
{% endhighlight %}
3131

@@ -34,8 +34,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
3434
<p><img src="/images/banners/leaderboard-728x90.png" alt="PHP: The Right Way"/></p>
3535

3636
{% highlight html %}
37-
<a href="http://www.phptherightway.com">
38-
<img src="http://www.phptherightway.com/images/banners/leaderboard-728x90.png" alt="PHP: The Right Way"/>
37+
<a href="https://www.phptherightway.com">
38+
<img src="https://www.phptherightway.com/images/banners/leaderboard-728x90.png" alt="PHP: The Right Way"/>
3939
</a>
4040
{% endhighlight %}
4141

@@ -44,8 +44,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
4444
<p><img src="/images/banners/lg-rect-386x280.png" alt="PHP: The Right Way"/></p>
4545

4646
{% highlight html %}
47-
<a href="http://www.phptherightway.com">
48-
<img src="http://www.phptherightway.com/images/banners/lg-rect-386x280.png" alt="PHP: The Right Way"/>
47+
<a href="https://www.phptherightway.com">
48+
<img src="https://www.phptherightway.com/images/banners/lg-rect-386x280.png" alt="PHP: The Right Way"/>
4949
</a>
5050
{% endhighlight %}
5151

@@ -54,8 +54,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
5454
<p><img src="/images/banners/med-rect-300x250.png" alt="PHP: The Right Way"/></p>
5555

5656
{% highlight html %}
57-
<a href="http://www.phptherightway.com">
58-
<img src="http://www.phptherightway.com/images/banners/med-rect-300x250.png" alt="PHP: The Right Way"/>
57+
<a href="https://www.phptherightway.com">
58+
<img src="https://www.phptherightway.com/images/banners/med-rect-300x250.png" alt="PHP: The Right Way"/>
5959
</a>
6060
{% endhighlight %}
6161

@@ -64,8 +64,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
6464
<p><img src="/images/banners/rect-180x150.png" alt="PHP: The Right Way"/></p>
6565

6666
{% highlight html %}
67-
<a href="http://www.phptherightway.com">
68-
<img src="http://www.phptherightway.com/images/banners/rect-180x150.png" alt="PHP: The Right Way"/>
67+
<a href="https://www.phptherightway.com">
68+
<img src="https://www.phptherightway.com/images/banners/rect-180x150.png" alt="PHP: The Right Way"/>
6969
</a>
7070
{% endhighlight %}
7171

@@ -74,8 +74,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
7474
<p><img src="/images/banners/sq-btn-125x125.png" alt="PHP: The Right Way"/></p>
7575

7676
{% highlight html %}
77-
<a href="http://www.phptherightway.com">
78-
<img src="http://www.phptherightway.com/images/banners/sq-btn-125x125.png" alt="PHP: The Right Way"/>
77+
<a href="https://www.phptherightway.com">
78+
<img src="https://www.phptherightway.com/images/banners/sq-btn-125x125.png" alt="PHP: The Right Way"/>
7979
</a>
8080
{% endhighlight %}
8181

@@ -84,7 +84,7 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers
8484
<p><img src="/images/banners/vert-rect-240x400.png" alt="PHP: The Right Way"/></p>
8585

8686
{% highlight html %}
87-
<a href="http://www.phptherightway.com">
88-
<img src="http://www.phptherightway.com/images/banners/vert-rect-240x400.png" alt="PHP: The Right Way"/>
87+
<a href="https://www.phptherightway.com">
88+
<img src="https://www.phptherightway.com/images/banners/vert-rect-240x400.png" alt="PHP: The Right Way"/>
8989
</a>
9090
{% endhighlight %}

0 commit comments

Comments
 (0)