mirror of
https://github.com/tchapi/davis.git
synced 2025-01-17 12:58:18 +01:00
Fix PHP version to avoid 7.3.* installation issues
This commit is contained in:
parent
3c8e22d45e
commit
55396efe8a
@ -39,7 +39,10 @@
|
||||
"preferred-install": {
|
||||
"*": "dist"
|
||||
},
|
||||
"sort-packages": true
|
||||
"sort-packages": true,
|
||||
"platform": {
|
||||
"php": "7.3.12"
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
|
50
composer.lock
generated
50
composer.lock
generated
@ -4,7 +4,7 @@
|
||||
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
|
||||
"This file is @generated automatically"
|
||||
],
|
||||
"content-hash": "4110c0f3049159ae6b22b379318d75d3",
|
||||
"content-hash": "8bc28bcbf86329df5382cc04497c8519",
|
||||
"packages": [
|
||||
{
|
||||
"name": "composer/semver",
|
||||
@ -1577,39 +1577,34 @@
|
||||
},
|
||||
{
|
||||
"name": "ocramius/proxy-manager",
|
||||
"version": "2.5.0",
|
||||
"version": "2.2.3",
|
||||
"source": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/Ocramius/ProxyManager.git",
|
||||
"reference": "8eb0084cef8e4982c937b8dd1bdfd488a80cc64f"
|
||||
"reference": "4d154742e31c35137d5374c998e8f86b54db2e2f"
|
||||
},
|
||||
"dist": {
|
||||
"type": "zip",
|
||||
"url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/8eb0084cef8e4982c937b8dd1bdfd488a80cc64f",
|
||||
"reference": "8eb0084cef8e4982c937b8dd1bdfd488a80cc64f",
|
||||
"url": "https://api.github.com/repos/Ocramius/ProxyManager/zipball/4d154742e31c35137d5374c998e8f86b54db2e2f",
|
||||
"reference": "4d154742e31c35137d5374c998e8f86b54db2e2f",
|
||||
"shasum": ""
|
||||
},
|
||||
"require": {
|
||||
"ocramius/package-versions": "^1.5.1",
|
||||
"php": "^7.4.0",
|
||||
"zendframework/zend-code": "^3.3.1"
|
||||
},
|
||||
"conflict": {
|
||||
"doctrine/annotations": "<1.6.1",
|
||||
"zendframework/zend-stdlib": "<3.2.1"
|
||||
"ocramius/package-versions": "^1.1.3",
|
||||
"php": "^7.2.0",
|
||||
"zendframework/zend-code": "^3.3.0"
|
||||
},
|
||||
"require-dev": {
|
||||
"couscous/couscous": "^1.7.2",
|
||||
"doctrine/coding-standard": "^6.0.0",
|
||||
"couscous/couscous": "^1.6.1",
|
||||
"ext-phar": "*",
|
||||
"infection/infection": "^0.13.4",
|
||||
"nikic/php-parser": "^4.2.2",
|
||||
"phpbench/phpbench": "^0.16.9",
|
||||
"phpunit/phpunit": "^8.3.3",
|
||||
"slevomat/coding-standard": "^5.0.4",
|
||||
"squizlabs/php_codesniffer": "^3.4.2",
|
||||
"symfony/console": "^4.3.3",
|
||||
"vimeo/psalm": "3.4.11"
|
||||
"humbug/humbug": "1.0.0-RC.0@RC",
|
||||
"nikic/php-parser": "^3.1.1",
|
||||
"padraic/phpunit-accelerator": "dev-master@DEV",
|
||||
"phpbench/phpbench": "^0.12.2",
|
||||
"phpstan/phpstan": "dev-master#856eb10a81c1d27c701a83f167dc870fd8f4236a as 0.9.999",
|
||||
"phpstan/phpstan-phpunit": "dev-master#5629c0a1f4a9c417cb1077cf6693ad9753895761",
|
||||
"phpunit/phpunit": "^6.4.3",
|
||||
"squizlabs/php_codesniffer": "^2.9.1"
|
||||
},
|
||||
"suggest": {
|
||||
"ocramius/generated-hydrator": "To have very fast object to array to object conversion for ghost objects",
|
||||
@ -1624,8 +1619,8 @@
|
||||
}
|
||||
},
|
||||
"autoload": {
|
||||
"psr-4": {
|
||||
"ProxyManager\\": "src/ProxyManager"
|
||||
"psr-0": {
|
||||
"ProxyManager\\": "src"
|
||||
}
|
||||
},
|
||||
"notification-url": "https://packagist.org/downloads/",
|
||||
@ -1648,7 +1643,7 @@
|
||||
"proxy pattern",
|
||||
"service proxies"
|
||||
],
|
||||
"time": "2019-08-10T10:43:36+00:00"
|
||||
"time": "2019-08-10T08:37:15+00:00"
|
||||
},
|
||||
{
|
||||
"name": "php-cs-fixer/diff",
|
||||
@ -7174,5 +7169,8 @@
|
||||
"ext-ctype": "*",
|
||||
"ext-iconv": "*"
|
||||
},
|
||||
"platform-dev": []
|
||||
"platform-dev": [],
|
||||
"platform-overrides": {
|
||||
"php": "7.3.12"
|
||||
}
|
||||
}
|
||||
|
@ -123,6 +123,9 @@
|
||||
"ocramius/proxy-manager": {
|
||||
"version": "2.2.3"
|
||||
},
|
||||
"php": {
|
||||
"version": "7.3.12"
|
||||
},
|
||||
"php-cs-fixer/diff": {
|
||||
"version": "v1.3.0"
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user