1
0
mirror of https://github.com/laravel/valet.git synced 2026-02-05 16:40:05 +01:00
Files
laravel-valet/composer.json
Glendon Solsberry e714082d50 Allows Valet to run under PHP 5.5 (#57)
* Allows for valet to run under PHP 5.5 as well.

Add checks for php55 to the mix.

* Allows for valet to run under PHP 5.5 as well.

Add checks for php55 to the mix.

* Update .travis.yml

* Update PhpFpm.php

* Add tests for php55
2016-05-10 21:56:25 -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": "taylorotwell@gmail.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.5.9",
"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"
]
}