Downloads:
9,072
Downloads of v 5.10.2:
446
Last Update:
20 Jul 2024
Package Maintainer(s):
Software Author(s):
- Symfony
Tags:
symfony-cli symfony- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Symfony CLI
This is not the latest version of Symfony CLI available.
- 1
- 2
- 3
5.10.2 | Updated: 20 Jul 2024
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Docs
- Software Issues
- Package Specific:
- Package Source
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
9,072
Downloads of v 5.10.2:
446
Maintainer(s):
Software Author(s):
- Symfony
Symfony CLI 5.10.2
This is not the latest version of Symfony CLI available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Symfony. The inclusion of Symfony trademark(s), if any, upon this webpage is solely to identify Symfony goods or services and not for commercial purposes.
- 1
- 2
- 3
All Checks are Passing
3 Passing Tests
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Symfony CLI, run the following command from the command line or from PowerShell:
To upgrade Symfony CLI, run the following command from the command line or from PowerShell:
To uninstall Symfony CLI, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download symfony-cli --internalize --version=5.10.2 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade symfony-cli -y --source="'INTERNAL REPO URL'" --version="'5.10.2'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade symfony-cli -y --source="'INTERNAL REPO URL'" --version="'5.10.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install symfony-cli
win_chocolatey:
name: symfony-cli
version: '5.10.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'symfony-cli' do
action :install
source 'INTERNAL REPO URL'
version '5.10.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller symfony-cli
{
Name = "symfony-cli"
Version = "5.10.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'symfony-cli':
ensure => '5.10.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
Private CDN cached downloads available for licensed customers. Never experience 404 breakages again! Learn more...
This package was approved as a trusted package on 20 Jul 2024.
The Symfony binary is a must-have tool when developing Symfony applications on your local machine. It provides:
* The best way to create new Symfony applications;
* A powerful local web server to develop your projects with support for TLS certificates;
* A tool to check for security vulnerabilities;
* Seamless integration with Platform.sh.
## Technical Requirements
* Install PHP 8.0.2 or higher and these PHP extensions (which are installed and enabled by default in most PHP 8 installations): Ctype, iconv, PCRE, Session, SimpleXML, and Tokenizer;
* Install Composer, which is used to install PHP packages.
This package does not depend on the PHP or Composer Setup package.
$programFiles = (${env:ProgramFiles},$null -ne ${env:ProgramFiles(x86)})[0]
$installDir = "$programFiles\$env:ChocolateyPackageName"
$statementTerminator = ";"
$actualPath = [System.Collections.ArrayList](Get-EnvironmentVariable -Name 'Path' -Scope 'Machine' -PreserveVariables).split($statementTerminator)
if ($actualPath -contains $installDir)
{
Write-Host "PATH environment variable contains $installDir. Removing..."
$actualPath.Remove($installDir)
$newPath = $actualPath -Join $statementTerminator
$cmd = "Set-EnvironmentVariable -Name 'Path' -Value `'$newPath`' -Scope 'Machine'"
if (Test-ProcessAdminRights) {
Invoke-Expression $cmd
} else {
Start-ChocolateyProcessAsAdmin "$cmd"
}
}
$programFiles = (${env:ProgramFiles},$null -ne ${env:ProgramFiles(x86)})[0]
$installDir = "$programFiles\$env:ChocolateyPackageName"
Remove-Item -Path $installDir -Recurse
Log in or click on link to see number of positives.
- symfony-cli.5.10.2.nupkg (4a688dea2acf) - ## / 66
- symfony-cli_windows_amd64.zip (1eb1f95da515) - ## / 68
- symfony-cli_windows_386.zip (958978bb2cd5) - ## / 68
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Symfony CLI 5.10.6 | 256 | Friday, January 3, 2025 | Approved | |
Symfony CLI 5.10.5 | 205 | Sunday, December 1, 2024 | Approved | |
Symfony CLI 5.10.4 | 299 | Friday, October 11, 2024 | Approved | |
Symfony CLI 5.10.3 | 60 | Tuesday, October 8, 2024 | Approved | |
Symfony CLI 5.10.2 | 446 | Saturday, July 20, 2024 | Approved | |
Symfony CLI 5.10.0 | 48 | Thursday, July 18, 2024 | Approved | |
Symfony CLI 5.9.1 | 307 | Wednesday, June 5, 2024 | Approved | |
Symfony CLI 5.8.19 | 211 | Friday, May 10, 2024 | Approved | |
Symfony CLI 5.8.18 | 30 | Friday, May 10, 2024 | Approved | |
Symfony CLI 5.8.17 | 81 | Sunday, May 5, 2024 | Approved | |
Symfony CLI 5.8.16 | 121 | Wednesday, April 24, 2024 | Approved | |
Symfony CLI 5.8.15 | 118 | Monday, April 15, 2024 | Approved | |
Symfony CLI 5.8.14 | 218 | Saturday, March 23, 2024 | Approved | |
Symfony CLI 5.8.12 | 113 | Thursday, March 14, 2024 | Approved | |
Symfony CLI 5.8.11 | 232 | Thursday, February 15, 2024 | Approved | |
Symfony CLI 5.8.10 | 36 | Thursday, February 15, 2024 | Approved | |
Symfony CLI 5.8.9 | 29 | Thursday, February 15, 2024 | Approved | |
Symfony CLI 5.8.8 | 99 | Friday, February 9, 2024 | Approved | |
Symfony CLI 5.8.7 | 43 | Thursday, February 8, 2024 | Approved | |
Symfony CLI 5.8.6 | 115 | Tuesday, January 30, 2024 | Approved | |
Symfony CLI 5.8.5 | 31 | Tuesday, January 30, 2024 | Approved | |
Symfony CLI 5.8.4 | 100 | Wednesday, January 24, 2024 | Approved | |
Symfony CLI 5.8.3 | 100 | Friday, January 19, 2024 | Approved | |
Symfony CLI 5.8.2 | 55 | Thursday, January 18, 2024 | Approved | |
Symfony CLI 5.8.1 | 135 | Tuesday, January 9, 2024 | Approved | |
Symfony CLI 5.8.0 | 52 | Tuesday, January 9, 2024 | Approved | |
Symfony CLI 5.7.8 | 97 | Tuesday, January 2, 2024 | Approved | |
Symfony CLI 5.7.7 | 62 | Friday, December 29, 2023 | Approved | |
Symfony CLI 5.7.6 | 126 | Sunday, December 17, 2023 | Approved | |
Symfony CLI 5.7.5 | 106 | Thursday, December 7, 2023 | Approved | |
Symfony CLI 5.7.4 | 54 | Wednesday, December 6, 2023 | Approved | |
Symfony CLI 5.7.3 | 228 | Wednesday, November 15, 2023 | Approved | |
Symfony CLI 5.7.2 | 123 | Monday, November 6, 2023 | Approved | |
Symfony CLI 5.7.0 | 85 | Saturday, November 4, 2023 | Approved | |
Symfony CLI 5.6.2 | 118 | Wednesday, October 25, 2023 | Approved | |
Symfony CLI 5.6.1 | 47 | Tuesday, October 24, 2023 | Approved | |
Symfony CLI 5.6.0 | 101 | Wednesday, October 18, 2023 | Approved | |
Symfony CLI 5.5.10 | 189 | Wednesday, September 27, 2023 | Approved | |
Symfony CLI 5.5.8 | 318 | Friday, August 4, 2023 | Approved | |
Symfony CLI 5.5.7 | 136 | Friday, July 21, 2023 | Approved | |
Symfony CLI 5.5.6 | 389 | Tuesday, May 16, 2023 | Approved | |
Symfony CLI 5.5.5 | 143 | Saturday, May 6, 2023 | Approved | |
Symfony CLI 5.5.4 | 110 | Thursday, April 27, 2023 | Approved | |
Symfony CLI 5.5.3 | 78 | Tuesday, April 25, 2023 | Approved | |
Symfony CLI 5.5.2 | 282 | Thursday, March 23, 2023 | Approved | |
Symfony CLI 5.5.1 | 232 | Friday, February 24, 2023 | Approved | |
Symfony CLI 5.5.0 | 138 | Wednesday, February 15, 2023 | Approved | |
Symfony CLI 5.4.21 | 262 | Thursday, January 12, 2023 | Approved | |
Symfony CLI 5.4.20 | 139 | Saturday, December 24, 2022 | Approved | |
Symfony CLI 5.4.19 | 226 | Monday, November 21, 2022 | Approved | |
Symfony CLI 5.4.18 | 95 | Saturday, November 12, 2022 | Approved | |
Symfony CLI 5.4.17 | 110 | Monday, October 31, 2022 | Approved | |
Symfony CLI 5.4.16 | 164 | Monday, October 10, 2022 | Approved | |
Symfony CLI 5.4.15 | 50 | Monday, October 10, 2022 | Approved | |
Symfony CLI 5.4.14 | 85 | Friday, September 30, 2022 | Approved | |
Symfony CLI 5.4.13 | 224 | Tuesday, August 16, 2022 | Approved | |
Symfony CLI 5.4.12 | 173 | Thursday, July 7, 2022 | Approved | |
Symfony CLI 5.4.11 | 175 | Sunday, June 12, 2022 | Approved | |
Symfony CLI 5.4.10 | 73 | Friday, June 3, 2022 | Approved | |
Symfony CLI 5.4.8 | 186 | Monday, April 25, 2022 | Approved | |
Symfony CLI 5.4.7 | 229 | Monday, April 25, 2022 | Approved | |
Symfony CLI 5.4.6 | 50 | Monday, April 25, 2022 | Approved | |
Symfony CLI 5.4.5 | 129 | Saturday, April 2, 2022 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Symfony CLI and the Symfony CLI package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Symfony CLI, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.