forked from laravolt/avatar
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.03 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.03 KB
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
37
38
39
40
41
42
43
44
45
46
47
{
"name": "laravolt/avatar",
"description": "Display avatar as base64",
"keywords": [
"laravel",
"laravolt",
"avatar"
],
"homepage": "https://github.com/laravolt/avatar",
"license": "MIT",
"authors": [
{
"name": "Bayu Hendra Winata",
"email": "uyab.exe@gmail.com",
"homepage": "http://id-laravel.com",
"role": "Developer"
}
],
"require": {
"php" : ">=5.5.0",
"illuminate/support": "~5.2",
"illuminate/cache": "~5.2",
"intervention/image": "2.3.2",
"danielstjules/stringy": "~2.2"
},
"require-dev": {
"phpunit/phpunit" : "4.*"
},
"autoload": {
"psr-4": {
"Laravolt\\Avatar\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Laravolt\\Avatar\\Test\\": "tests"
}
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}