1
0
Fork 0

Merge pull request #8774 from Ayesh/https

Update HTTP URLs to their HTTPS if they already redirect automatically
pull/8780/head
Jordi Boggiano 2020-04-13 11:52:21 +02:00 committed by GitHub
commit 3dd6dbe14a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
15 changed files with 22 additions and 22 deletions

2
.gitattributes vendored
View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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) - 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](http://seld.be) - 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.

View File

@ -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": {

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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": [

View File

@ -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,

View File

@ -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 https://www.php-fig.org/psr/psr-0/
* @see http://www.php-fig.org/psr/psr-4/ * @see https://www.php-fig.org/psr/psr-4/
*/ */
class ClassLoader class ClassLoader
{ {

View File

@ -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

View File

@ -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"
} }
], ],

View File

@ -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": {