Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings
This repository was archived by the owner on Nov 14, 2019. It is now read-only.

Commit 2cfc573

Browse filesBrowse files
committed
Use https when refering to symfony.com
1 parent 436e883 commit 2cfc573
Copy full SHA for 2cfc573

File tree

Expand file treeCollapse file tree

4 files changed

+9
-9
lines changed
Filter options
Expand file treeCollapse file tree

4 files changed

+9
-9
lines changed

‎composer.json

Copy file name to clipboardExpand all lines: composer.json
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"authors": [
77
{
88
"name": "Symfony Community",
9-
"homepage": "http://symfony.com/contributors"
9+
"homepage": "https://symfony.com/contributors"
1010
}
1111
],
1212
"autoload": {

‎src/Symfony/Installer/DemoCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Installer/DemoCommand.php
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,6 +173,6 @@ protected function getDownloadedApplicationType()
173173
*/
174174
protected function getRemoteFileUrl()
175175
{
176-
return 'http://symfony.com/download?v=Symfony_Demo';
176+
return 'https://symfony.com/download?v=Symfony_Demo';
177177
}
178178
}

‎src/Symfony/Installer/NewCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Installer/NewCommand.php
+5-5Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
9797
/**
9898
* Checks whether the given Symfony version is installable by the installer.
9999
* Due to the changes introduced in the Icu/Intl components
100-
* (see http://symfony.com/blog/new-in-symfony-2-6-farewell-to-icu-component)
100+
* (see https://symfony.com/blog/new-in-symfony-2-6-farewell-to-icu-component)
101101
* not all the previous Symfony versions are installable by the installer.
102102
*
103103
* The rules to decide if the version is installable are as follows:
@@ -124,12 +124,12 @@ protected function checkSymfonyVersionIsInstallable()
124124

125125
// Get the full list of Symfony versions to check if it's installable
126126
$client = $this->getGuzzleClient();
127-
$symfonyVersions = $client->get('http://symfony.com/versions.json')->json();
127+
$symfonyVersions = $client->get('https://symfony.com/versions.json')->json();
128128
if (empty($symfonyVersions)) {
129129
throw new \RuntimeException(
130130
"There was a problem while downloading the list of Symfony versions from\n".
131131
"symfony.com. Check that you are online and the following URL is accessible:\n\n".
132-
'http://symfony.com/versions.json'
132+
'https://symfony.com/versions.json'
133133
);
134134
}
135135

@@ -266,7 +266,7 @@ protected function displayInstallationResult()
266266
" * Run your application:\n".
267267
" 1. Execute the <comment>php %s/console %s</comment> command.\n".
268268
" 2. Browse to the <comment>http://localhost:8000</comment> URL.\n\n".
269-
" * Read the documentation at <comment>http://symfony.com/doc</comment>\n",
269+
" * Read the documentation at <comment>https://symfony.com/doc</comment>\n",
270270
$consoleDir, $serverRunCommand
271271
));
272272

@@ -352,6 +352,6 @@ protected function getDownloadedApplicationType()
352352
*/
353353
protected function getRemoteFileUrl()
354354
{
355-
return 'http://symfony.com/download?v=Symfony_Standard_Vendors_'.$this->version;
355+
return 'https://symfony.com/download?v=Symfony_Standard_Vendors_'.$this->version;
356356
}
357357
}

‎src/Symfony/Installer/SelfUpdateCommand.php

Copy file name to clipboardExpand all lines: src/Symfony/Installer/SelfUpdateCommand.php
+2-2Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public function isEnabled()
8989
protected function initialize(InputInterface $input, OutputInterface $output)
9090
{
9191
parent::initialize($input, $output);
92-
$this->remoteInstallerFile = 'http://symfony.com/installer';
92+
$this->remoteInstallerFile = 'https://symfony.com/installer';
9393
$this->currentInstallerFile = realpath($_SERVER['argv'][0]) ?: $_SERVER['argv'][0];
9494
$this->tempDir = sys_get_temp_dir();
9595
$this->currentInstallerBackupFile = basename($this->currentInstallerFile, '.phar').'-backup.phar';
@@ -252,6 +252,6 @@ protected function getDownloadedApplicationType()
252252
*/
253253
protected function getRemoteFileUrl()
254254
{
255-
return 'http://symfony.com/installer';
255+
return 'https://symfony.com/installer';
256256
}
257257
}

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.