1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-06 08:40:09 +01:00
Files
laravel-valet/composer.json
Chris Brown b8cd17ed98 Drop unnecessary symfony/process 2.x support
Since we require PHP > 5.6 there's no need to support symfony/process 2.x 

However, symfony/process 4.x requires minimum PHP 7.1 so have to retain 3.x for now if we wish to support PHP 7.0 or older without complications.
2019-11-30 16:10:22 -05:00

42 lines
1.0 KiB
JSON

{
"name": "laravel/valet",
"description": "A more enjoyable local development experience for Mac.",
"keywords": ["laravel", "zonda", "wwdhhd"],
"license": "MIT",
"authors": [
{
"name": "Taylor Otwell",
"email": "taylor@laravel.com"
},
{
"name": "Adam Wathan",
"email": "adam.wathan@gmail.com"
}
],
"autoload": {
"files": [
"cli/includes/compatibility.php",
"cli/includes/facades.php",
"cli/includes/helpers.php"
],
"psr-4": {
"Valet\\": "cli/Valet/"
}
},
"require": {
"php": ">=5.6",
"illuminate/container": "~5.1 | ^6.0",
"mnapoli/silly": "~1.0",
"symfony/process": "~3.0|~4.0|~5.0",
"nategood/httpful": "~0.2",
"tightenco/collect": "^5.3 | ^6.0"
},
"require-dev": {
"mockery/mockery": "^1.2.3",
"phpunit/phpunit": "~5.7"
},
"bin": [
"valet"
]
}