Skip to content

Commit cde634a

Browse files
authored
Merge pull request #962 from petk/patch-https-3
Update links to https
2 parents b1398f1 + 49cadd2 commit cde634a

11 files changed

+27
-27
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 1 addition & 1 deletion
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

Lines changed: 2 additions & 2 deletions
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.

0 commit comments

Comments
 (0)