Skip to content

Commit

Permalink
minor #37494 Use ">=" for the "php" requirement (alexpott)
Browse files Browse the repository at this point in the history
This PR was merged into the 4.4 branch.

Discussion
----------

Use ">=" for the "php" requirement

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | kinda - prevents projects from installing on PHP 8.0 unnecessarily.
| New feature?  | no
| Deprecations? | no
| Tickets       | Fix #... <!-- prefix each issue number with "Fix #", if any -->
| License       | MIT
| Doc PR        | symfony/symfony-docs#... <!-- required for new features -->

Making the same change as f8aa087 but for a couple of places where it seems to have been missed.

Commits
-------

4a36076 Use ">=" for the "php" requirement
  • Loading branch information
nicolas-grekas committed Jul 5, 2020
2 parents 3270726 + 4a36076 commit 3b1e34b
Show file tree
Hide file tree
Showing 11 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion src/Symfony/Component/Asset/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"suggest": {
"symfony/http-foundation": ""
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/CssSelector/composer.json
Expand Up @@ -20,7 +20,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\CssSelector\\": "" },
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Dotenv/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"require-dev": {
"symfony/process": "^3.4.2|^4.0|^5.0"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Finder/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Finder\\": "" },
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/OptionsResolver/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\OptionsResolver\\": "" },
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Process/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"autoload": {
"psr-4": { "Symfony\\Component\\Process\\": "" },
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/Routing/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"require-dev": {
"symfony/config": "^4.2|^5.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Component/VarExporter/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"require-dev": {
"symfony/var-dumper": "^4.4.9|^5.0.9"
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Contracts/EventDispatcher/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"suggest": {
"psr/event-dispatcher": "",
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Contracts/HttpClient/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"suggest": {
"symfony/http-client-implementation": ""
Expand Down
2 changes: 1 addition & 1 deletion src/Symfony/Contracts/Translation/composer.json
Expand Up @@ -16,7 +16,7 @@
}
],
"require": {
"php": "^7.1.3"
"php": ">=7.1.3"
},
"suggest": {
"symfony/translation-implementation": ""
Expand Down

0 comments on commit 3b1e34b

Please sign in to comment.