1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 08:30:07 +01:00
Files
laravel-valet/composer.json
Chris Brown e208ca2340 Update minimum PHP requirement to 5.6
... because it's not actually compatible with 5.5 anymore - Ref: https://github.com/laravel/valet/issues/279
2016-12-27 15:58:16 -05:00

42 lines
1019 B
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",
"mnapoli/silly": "~1.0",
"symfony/process": "~2.7|~3.0",
"nategood/httpful": "~0.2",
"tightenco/collect": "^5.2"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"phpunit/phpunit": ">=4.8.24"
},
"bin": [
"valet"
]
}