From 49cadd2a4fa789d05da64a22a36914393a9d2854 Mon Sep 17 00:00:00 2001 From: Peter Kokot Date: Wed, 18 Jan 2023 18:27:18 +0100 Subject: [PATCH] Update links to https --- LICENSE | 2 +- _posts/01-06-01-Common-Directory-Structure.md | 2 +- ...1-Internationalization-and-Localization.md | 2 +- _posts/07-05-01-Abstraction-Layers.md | 2 +- _posts/08-03-01-Plain-PHP-Templates.md | 2 +- _posts/08-05-01-Further-Reading.md | 2 +- _posts/13-02-01-Vagrant.md | 2 +- _posts/15-02-01-PHPDoc.md | 2 +- _posts/16-07-01-Components.md | 2 +- _posts/16-10-01-Books.md | 4 +-- banners.md | 32 +++++++++---------- 11 files changed, 27 insertions(+), 27 deletions(-) diff --git a/LICENSE b/LICENSE index 8e9a4f2..c3a7010 100644 --- a/LICENSE +++ b/LICENSE @@ -1,3 +1,3 @@ Copyright (c) 2013 Josh Lockhart -http://creativecommons.org/licenses/by-nc-sa/3.0/ +https://creativecommons.org/licenses/by-nc-sa/3.0/ diff --git a/_posts/01-06-01-Common-Directory-Structure.md b/_posts/01-06-01-Common-Directory-Structure.md index 1cd9fa7..2777ff6 100644 --- a/_posts/01-06-01-Common-Directory-Structure.md +++ b/_posts/01-06-01-Common-Directory-Structure.md @@ -14,6 +14,6 @@ For each team, CMS, or framework one works in, a standard directory structure is [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. -[Paul M. Jones]: http://paul-m-jones.com/ +[Paul M. Jones]: https://paul-m-jones.com/ [Standard PHP Package Skeleton]: https://github.com/php-pds/skeleton [Composer]: /#composer_and_packagist diff --git a/_posts/05-06-01-Internationalization-and-Localization.md b/_posts/05-06-01-Internationalization-and-Localization.md index ef2526c..5f81959 100644 --- a/_posts/05-06-01-Internationalization-and-Localization.md +++ b/_posts/05-06-01-Internationalization-and-Localization.md @@ -403,7 +403,7 @@ After including those new rules in the `.po` file, a new scan will bring in your [poedit_download]: https://poedit.net/download [lingohub]: https://lingohub.com/blog/2013/07/php-internationalization-with-gettext-tutorial/ [lingohub_plurals]: https://lingohub.com/blog/2013/07/php-internationalization-with-gettext-tutorial/#Plurals -[plural]: http://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html +[plural]: https://docs.translatehouse.org/projects/localization-guide/en/latest/l10n/pluralforms.html [gettext]: https://en.wikipedia.org/wiki/Gettext [manual]: https://www.gnu.org/software/gettext/manual/gettext.html [639-1]: https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes diff --git a/_posts/07-05-01-Abstraction-Layers.md b/_posts/07-05-01-Abstraction-Layers.md index 414d46b..43bccf7 100644 --- a/_posts/07-05-01-Abstraction-Layers.md +++ b/_posts/07-05-01-Abstraction-Layers.md @@ -28,7 +28,7 @@ installed in any application you like: [4]: https://packages.zendframework.com/docs/latest/manual/en/index.html#zendframework/zend-db [5]: https://atlasphp.io [6]: https://github.com/auraphp/Aura.Sql -[7]: http://propelorm.org/ +[7]: https://propelorm.org/ [8]: https://medoo.in/ [psr0]: https://www.php-fig.org/psr/psr-0/ [psr4]: https://www.php-fig.org/psr/psr-4/ diff --git a/_posts/08-03-01-Plain-PHP-Templates.md b/_posts/08-03-01-Plain-PHP-Templates.md index 78bcf05..f0ab00a 100644 --- a/_posts/08-03-01-Plain-PHP-Templates.md +++ b/_posts/08-03-01-Plain-PHP-Templates.md @@ -62,5 +62,5 @@ Using the [Plates][plates] library. {% endhighlight %} -[plates]: http://platesphp.com/ +[plates]: https://platesphp.com/ [aura]: https://github.com/auraphp/Aura.View diff --git a/_posts/08-05-01-Further-Reading.md b/_posts/08-05-01-Further-Reading.md index acdac1e..284e235 100644 --- a/_posts/08-05-01-Further-Reading.md +++ b/_posts/08-05-01-Further-Reading.md @@ -23,7 +23,7 @@ anchor: templating_further_reading * [Latte](https://github.com/nette/latte) *(compiled)* * [Mustache](https://github.com/bobthecow/mustache.php) *(compiled)* * [PHPTAL](https://phptal.org/) *(compiled)* -* [Plates](http://platesphp.com/) *(native)* +* [Plates](https://platesphp.com/) *(native)* * [Smarty](https://www.smarty.net/) *(compiled)* * [Twig](https://twig.symfony.com/) *(compiled)* * [Zend-View](https://docs.zendframework.com/zend-view/) *(native, framework specific)* diff --git a/_posts/13-02-01-Vagrant.md b/_posts/13-02-01-Vagrant.md index 1f437bf..0ba2afe 100644 --- a/_posts/13-02-01-Vagrant.md +++ b/_posts/13-02-01-Vagrant.md @@ -28,4 +28,4 @@ it can be used to deploy to cloud services as well. The provisioning is made wit [Puppet]: https://puppet.com/ [Chef]: https://www.chef.io/ [Puphpet]: https://github.com/puphpet/puphpet -[Phansible]: http://phansible.com/ +[Phansible]: https://phansible.com/ diff --git a/_posts/15-02-01-PHPDoc.md b/_posts/15-02-01-PHPDoc.md index 1ac3a26..49c3a46 100644 --- a/_posts/15-02-01-PHPDoc.md +++ b/_posts/15-02-01-PHPDoc.md @@ -15,7 +15,7 @@ Below is an example of how you might document a class with a few methods; - * @link http://www.phpdoc.org/docs/latest/index.html + * @link https://www.phpdoc.org/docs/latest/index.html */ class DateTimeHelper { diff --git a/_posts/16-07-01-Components.md b/_posts/16-07-01-Components.md index 59cd3f0..e20eda2 100644 --- a/_posts/16-07-01-Components.md +++ b/_posts/16-07-01-Components.md @@ -44,7 +44,7 @@ components best decoupled from the Laravel framework are listed above._ [PEAR]: /#pear [Dependency Management]: /#dependency_management [FuelPHP Validation package]: https://github.com/fuelphp/validation -[Aura]: http://auraphp.com/framework/ +[Aura]: https://auraphp.com/framework/ [FuelPHP]: https://github.com/fuelphp [Hoa Project]: https://github.com/hoaproject [Symfony Components]: https://symfony.com/components diff --git a/_posts/16-10-01-Books.md b/_posts/16-10-01-Books.md index b9807b5..2aaf741 100644 --- a/_posts/16-10-01-Books.md +++ b/_posts/16-10-01-Books.md @@ -12,7 +12,7 @@ book to be added, send a PR and it will be reviewed for relevancy. ### Free Books -* [PHP Pandas](http://daylerees.com/php-pandas/) - Aims to teach everyone how to be a web developer. +* [PHP Pandas](https://daylerees.com/php-pandas/) - Aims to teach everyone how to be a web developer. * [PHP The Right Way](https://leanpub.com/phptherightway/) - This website is available as a book completely for free. * [Using Libsodium in PHP Projects](https://paragonie.com/book/pecl-libsodium) - Guide to using Libsodium PHP extension for modern, secure, and fast cryptography. @@ -28,7 +28,7 @@ developer usually acquires over years of experience, all condensed down into one small, specific steps * [Securing PHP: Core Concepts](https://leanpub.com/securingphp-coreconcepts) - A guide to some of the most common security terms and provides some examples of them in every day PHP -* [Scaling PHP](http://www.scalingphpbook.com/) - Stop playing sysadmin and get back to coding +* [Scaling PHP](https://www.scalingphpbook.com/) - Stop playing sysadmin and get back to coding * [Signaling PHP](https://leanpub.com/signalingphp) - PCNLT signals are a great help when writing PHP scripts that run from the command line. * [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. diff --git a/banners.md b/banners.md index 566d11d..e1a7fb6 100644 --- a/banners.md +++ b/banners.md @@ -14,8 +14,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -24,8 +24,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -34,8 +34,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -44,8 +44,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -54,8 +54,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -64,8 +64,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -74,8 +74,8 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %} @@ -84,7 +84,7 @@ Spread the word with _PHP: The Right Way_ banner images! Show new PHP developers

PHP: The Right Way

{% highlight html %} - - PHP: The Right Way + + PHP: The Right Way {% endhighlight %}