forked from chrisbjr/api-guard
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix dependency issues on Packagist integration
- Loading branch information
1 parent
554b4a3
commit 04a3bf2
Showing
1 changed file
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,23 +14,27 @@ | |
{ | ||
"name": "Chris Bautista", | ||
"email": "[email protected]" | ||
}, | ||
{ | ||
"name": "Mark Jayson Fuentes", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.5.9", | ||
"illuminate/auth": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/contracts": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/http": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/support": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/auth": "~5.0", | ||
"illuminate/contracts": "~5.0", | ||
"illuminate/http": "~5.0", | ||
"illuminate/support": "~5.0", | ||
"nesbot/carbon": "^1.0", | ||
"illuminate/database": "*", | ||
"illuminate/database": "~5.0", | ||
"ellipsesynergie/api-response": "*" | ||
}, | ||
"require-dev": { | ||
"cartalyst/sentinel": "2.0.*", | ||
"illuminate/console": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/database": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/routing": "5.1.* || 5.2.*, || 5.3.*", | ||
"illuminate/console": "~5.0", | ||
"illuminate/database": "~5.0", | ||
"illuminate/routing": "~5.0", | ||
"mockery/mockery": "0.9.*", | ||
"october/rain": "dev-stable", | ||
"phpunit/phpunit": "^4.0 || ^5.0" | ||
|
@@ -40,10 +44,5 @@ | |
"Chrisbjr\\ApiGuard\\": "src" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-master": "4.0-dev" | ||
} | ||
}, | ||
"minimum-stability": "stable" | ||
} |