Commit db97d73
committed
Allow installation on PHP 8
As it was, the plugin when used by external standards, would block them from being tested on PHP 8.
As all the dependencies in the `require` section allow for PHP 8, there is no reason not to allow it.
The only dependencies currently in use which do not allow for PHP 8 yet are in the `require-dev` section. See the below output.
This includes updating the Travis script to only do a full (`dev`) install when not on `nightly` and as PHPCompatibility is in the `require-dev` section, we need to require explicitly for `nightly` to make sure the integration test can run.
```bash
# composer prohibits php:8
composer/composer 1.9.3 requires php (^5.3.2 || ^7.0)
composer/semver 1.5.1 requires php (^5.3.2 || ^7.0)
seld/jsonlint 1.7.2 requires php (^5.3 || ^7.0)
symfony/console v4.4.4 requires php (^7.1.3)
symfony/filesystem v4.4.4 requires php (^7.1.3)
symfony/finder v4.4.4 requires php (^7.1.3)
symfony/process v4.4.4 requires php (^7.1.3)
symfony/service-contracts v2.0.1 requires php (^7.2.5)
```1 parent 8001af8 commit db97d73
2 files changed
+16
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
77 | 77 | | |
78 | 78 | | |
79 | 79 | | |
| 80 | + | |
| 81 | + | |
| 82 | + | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
| 86 | + | |
80 | 87 | | |
81 | 88 | | |
82 | 89 | | |
| |||
93 | 100 | | |
94 | 101 | | |
95 | 102 | | |
96 | | - | |
| 103 | + | |
| 104 | + | |
| 105 | + | |
| 106 | + | |
| 107 | + | |
| 108 | + | |
| 109 | + | |
97 | 110 | | |
98 | 111 | | |
99 | 112 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
23 | 23 | | |
24 | 24 | | |
25 | 25 | | |
26 | | - | |
| 26 | + | |
27 | 27 | | |
28 | | - | |
| 28 | + | |
29 | 29 | | |
30 | 30 | | |
31 | 31 | | |
| |||
0 commit comments