-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (35 loc) · 981 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "sschlein/obscure",
"description": "Obscure IDs in requests and URLs of you Laravel 5 app",
"license": "MIT",
"keywords": [],
"homepage": "http://github.com/sschlein/obscure",
"authors": [
{
"name": "Sebastian Schlein",
"email": "[email protected]"
}
],
"support": {
"issues": "https://github.com/sschlein/obscure/issues",
"source": "https://github.com/sschlein/obscure"
},
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.1",
"hashids/hashids": "1.0.5"
},
"require-dev": {
"phpunit/phpunit": "4.7.*",
"mockery/mockery": "dev-master",
"illuminate/database": "~5.0",
"illuminate/events": "~5.0",
"orchestra/testbench": "~3.0",
"guzzlehttp/guzzle": ">=4.0"
},
"autoload": {
"psr-4": {
"Sschlein\\Obscure\\": "src/Sschlein/Obscure/"
}
}
}