Browse Source

Update HTTP URLs to their HTTPS if they already redirect automatically

Ayesh Karunaratne 5 years ago
parent
commit
280f02b4bc

+ 1 - 1
.gitattributes

@@ -2,7 +2,7 @@
 *       text=auto eol=lf
 *       text=auto eol=lf
 
 
 # These files are always considered text and should use LF.
 # These files are always considered text and should use LF.
-# See core.whitespace @ http://git-scm.com/docs/git-config for whitespace flags.
+# See core.whitespace @ https://git-scm.com/docs/git-config for whitespace flags.
 *.php   text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
 *.php   text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4 diff=php
 *.json  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
 *.json  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
 *.test  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4
 *.test  text eol=lf whitespace=blank-at-eol,blank-at-eof,space-before-tab,tab-in-indent,tabwidth=4

+ 1 - 1
.github/CONTRIBUTING.md

@@ -2,7 +2,7 @@ Contributing to Composer
 ========================
 ========================
 
 
 Please note that this project is released with a
 Please note that this project is released with a
-[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/).
+[Contributor Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct/).
 By participating in this project you agree to abide by its terms.
 By participating in this project you agree to abide by its terms.
 
 
 Reporting Issues
 Reporting Issues

+ 1 - 1
CHANGELOG.md

@@ -759,7 +759,7 @@
 ### [1.0.0-alpha6] - 2012-10-23
 ### [1.0.0-alpha6] - 2012-10-23
 
 
   * Schema: Added ability to pass additional options to repositories (i.e. ssh keys/client certificates to secure private repos)
   * Schema: Added ability to pass additional options to repositories (i.e. ssh keys/client certificates to secure private repos)
-  * Schema: Added a new `~` operator that should be preferred over `>=`, see http://getcomposer.org/doc/01-basic-usage.md#package-versions
+  * Schema: Added a new `~` operator that should be preferred over `>=`, see https://getcomposer.org/doc/01-basic-usage.md#package-versions
   * Schema: Version constraints `<x.y` are assumed to be `<x.y-dev` unless specified as `<x.y-stable` to reduce confusion
   * Schema: Version constraints `<x.y` are assumed to be `<x.y-dev` unless specified as `<x.y-stable` to reduce confusion
   * Added `config` command to edit/list config values, including --global switch for system config
   * Added `config` command to edit/list config values, including --global switch for system config
   * Added OAuth token support for the GitHub API
   * Added OAuth token support for the GitHub API

+ 3 - 3
README.md

@@ -29,7 +29,7 @@ For support, Stack Overflow also offers a good collection of
 [Composer related questions](https://stackoverflow.com/questions/tagged/composer-php).
 [Composer related questions](https://stackoverflow.com/questions/tagged/composer-php).
 
 
 Please note that this project is released with a
 Please note that this project is released with a
-[Contributor Code of Conduct](http://contributor-covenant.org/version/1/4/).
+[Contributor Code of Conduct](https://www.contributor-covenant.org/version/1/4/code-of-conduct/).
 By participating in this project and its community you agree to abide by those terms.
 By participating in this project and its community you agree to abide by those terms.
 
 
 Requirements
 Requirements
@@ -40,8 +40,8 @@ PHP 5.3.2 or above (at least 5.3.4 recommended to avoid potential bugs)
 Authors
 Authors
 -------
 -------
 
 
-- Nils Adermann  | [GitHub](https://github.com/naderman)  | [Twitter](https://twitter.com/naderman) | <naderman@naderman.de> | [naderman.de](http://naderman.de)
-- Jordi Boggiano | [GitHub](https://github.com/Seldaek) | [Twitter](https://twitter.com/seldaek) | <j.boggiano@seld.be> | [seld.be](http://seld.be)
+- Nils Adermann  | [GitHub](https://github.com/naderman)  | [Twitter](https://twitter.com/naderman) | <naderman@naderman.de> | [naderman.de](https://naderman.de)
+- Jordi Boggiano | [GitHub](https://github.com/Seldaek) | [Twitter](https://twitter.com/seldaek) | <j.boggiano@seld.be> | [seld.be](https://seld.be)
 
 
 See also the list of [contributors](https://github.com/composer/composer/contributors) who participated in this project.
 See also the list of [contributors](https://github.com/composer/composer/contributors) who participated in this project.
 
 

+ 2 - 2
composer.json

@@ -13,12 +13,12 @@
         {
         {
             "name": "Nils Adermann",
             "name": "Nils Adermann",
             "email": "naderman@naderman.de",
             "email": "naderman@naderman.de",
-            "homepage": "http://www.naderman.de"
+            "homepage": "https://www.naderman.de"
         },
         },
         {
         {
             "name": "Jordi Boggiano",
             "name": "Jordi Boggiano",
             "email": "j.boggiano@seld.be",
             "email": "j.boggiano@seld.be",
-            "homepage": "http://seld.be"
+            "homepage": "https://seld.be"
         }
         }
     ],
     ],
     "require": {
     "require": {

+ 1 - 1
doc/01-basic-usage.md

@@ -233,7 +233,7 @@ You can even add your own code to the autoloader by adding an
 }
 }
 ```
 ```
 
 
-Composer will register a [PSR-4](http://www.php-fig.org/psr/psr-4/) autoloader
+Composer will register a [PSR-4](https://www.php-fig.org/psr/psr-4/) autoloader
 for the `Acme` namespace.
 for the `Acme` namespace.
 
 
 You define a mapping from namespaces to directories. The `src` directory would
 You define a mapping from namespaces to directories. The `src` directory would

+ 3 - 3
doc/04-schema.md

@@ -4,7 +4,7 @@ This chapter will explain all of the fields available in `composer.json`.
 
 
 ## JSON schema
 ## JSON schema
 
 
-We have a [JSON schema](http://json-schema.org) that documents the format and
+We have a [JSON schema](https://json-schema.org) that documents the format and
 can also be used to validate your `composer.json`. In fact, it is used by the
 can also be used to validate your `composer.json`. In fact, it is used by the
 `validate` command. You can find it at: https://getcomposer.org/schema.json
 `validate` command. You can find it at: https://getcomposer.org/schema.json
 
 
@@ -214,7 +214,7 @@ An example:
         {
         {
             "name": "Nils Adermann",
             "name": "Nils Adermann",
             "email": "naderman@naderman.de",
             "email": "naderman@naderman.de",
-            "homepage": "http://www.naderman.de",
+            "homepage": "https://www.naderman.de",
             "role": "Developer"
             "role": "Developer"
         },
         },
         {
         {
@@ -471,7 +471,7 @@ Example:
 
 
 Autoload mapping for a PHP autoloader.
 Autoload mapping for a PHP autoloader.
 
 
-[`PSR-4`](http://www.php-fig.org/psr/psr-4/) and [`PSR-0`](http://www.php-fig.org/psr/psr-0/)
+[`PSR-4`](https://www.php-fig.org/psr/psr-4/) and [`PSR-0`](http://www.php-fig.org/psr/psr-0/)
 autoloading, `classmap` generation and `files` includes are supported.
 autoloading, `classmap` generation and `files` includes are supported.
 
 
 PSR-4 is the recommended way since it offers greater ease of use (no need
 PSR-4 is the recommended way since it offers greater ease of use (no need

+ 1 - 1
doc/05-repositories.md

@@ -710,7 +710,7 @@ variables are parsed in both Windows and Linux/Mac notations. For example
 `%USERPROFILE%/git/mypackage`.
 `%USERPROFILE%/git/mypackage`.
 
 
 > **Note:** Repository paths can also contain wildcards like ``*`` and ``?``.
 > **Note:** Repository paths can also contain wildcards like ``*`` and ``?``.
-> For details, see the [PHP glob function](http://php.net/glob).
+> For details, see the [PHP glob function](https://php.net/glob).
 
 
 ## Disabling Packagist.org
 ## Disabling Packagist.org
 
 

+ 1 - 1
doc/07-community.md

@@ -19,7 +19,7 @@ The most important guidelines are described as follows:
 > Fork the project, create a feature branch, and send us a pull request.
 > Fork the project, create a feature branch, and send us a pull request.
 >
 >
 > To ensure a consistent code base, you should make sure the code follows
 > To ensure a consistent code base, you should make sure the code follows
-> the [PSR-2 Coding Standards](http://www.php-fig.org/psr/psr-2/).
+> the [PSR-2 Coding Standards](https://www.php-fig.org/psr/psr-2/).
 
 
 ## IRC / mailing list
 ## IRC / mailing list
 
 

+ 1 - 1
res/composer-repository-schema.json

@@ -1,5 +1,5 @@
 {
 {
-    "$schema": "http://json-schema.org/draft-04/schema#",
+    "$schema": "https://json-schema.org/draft-04/schema#",
     "description": "A representation of packages metadata.",
     "description": "A representation of packages metadata.",
     "type": "object",
     "type": "object",
     "oneOf": [
     "oneOf": [

+ 1 - 1
res/composer-schema.json

@@ -1,5 +1,5 @@
 {
 {
-    "$schema": "http://json-schema.org/draft-04/schema#",
+    "$schema": "https://json-schema.org/draft-04/schema#",
     "name": "Package",
     "name": "Package",
     "type": "object",
     "type": "object",
     "additionalProperties": false,
     "additionalProperties": false,

+ 2 - 2
src/Composer/Autoload/ClassLoader.php

@@ -37,8 +37,8 @@ namespace Composer\Autoload;
  *
  *
  * @author Fabien Potencier <fabien@symfony.com>
  * @author Fabien Potencier <fabien@symfony.com>
  * @author Jordi Boggiano <j.boggiano@seld.be>
  * @author Jordi Boggiano <j.boggiano@seld.be>
- * @see    http://www.php-fig.org/psr/psr-0/
- * @see    http://www.php-fig.org/psr/psr-4/
+ * @see    https://www.php-fig.org/psr/psr-0/
+ * @see    https://www.php-fig.org/psr/psr-4/
  */
  */
 class ClassLoader
 class ClassLoader
 {
 {

+ 1 - 1
src/Composer/Util/TlsHelper.php

@@ -98,7 +98,7 @@ final class TlsHelper
      * By Kevin McArthur of StormTide Digital Studios Inc.
      * By Kevin McArthur of StormTide Digital Studios Inc.
      * @KevinSMcArthur / https://github.com/StormTide
      * @KevinSMcArthur / https://github.com/StormTide
      *
      *
-     * See http://tools.ietf.org/html/draft-ietf-websec-key-pinning-02
+     * See https://tools.ietf.org/html/draft-ietf-websec-key-pinning-02
      *
      *
      * This method was adapted from Sslurp.
      * This method was adapted from Sslurp.
      * https://github.com/EvanDotPro/Sslurp
      * https://github.com/EvanDotPro/Sslurp

+ 1 - 1
tests/Composer/Test/Fixtures/functional/packages.json

@@ -18,7 +18,7 @@
             {
             {
                 "name": "Jordi Boggiano",
                 "name": "Jordi Boggiano",
                 "email": "j.boggiano@seld.be",
                 "email": "j.boggiano@seld.be",
-                "homepage": "http://seld.be",
+                "homepage": "https://seld.be",
                 "role": "Developer"
                 "role": "Developer"
             }
             }
         ],
         ],

+ 2 - 2
tests/Composer/Test/Json/Fixtures/composer.json

@@ -9,12 +9,12 @@
         {
         {
             "name": "Nils Adermann",
             "name": "Nils Adermann",
             "email": "naderman@naderman.de",
             "email": "naderman@naderman.de",
-            "homepage": "http://www.naderman.de"
+            "homepage": "https://www.naderman.de"
         },
         },
         {
         {
             "name": "Jordi Boggiano",
             "name": "Jordi Boggiano",
             "email": "j.boggiano@seld.be",
             "email": "j.boggiano@seld.be",
-            "homepage": "http://seld.be"
+            "homepage": "https://seld.be"
         }
         }
     ],
     ],
     "support": {
     "support": {