-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
63 lines (63 loc) · 1.43 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "loduis/alegra-php",
"description": "Alegra PHP Library",
"keywords": [
"alegra",
"api"
],
"homepage": "http://developer.alegra.com",
"license": "MIT",
"authors": [
{
"name": "Loduis Madariaga",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Illuminate\\": "lib/Illuminate/",
"Alegra\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Alegra\\Tests\\": "tests/"
}
},
"require": {
"php": ">=5.6.11",
"guzzlehttp/guzzle": "^6.2",
"illuminate/support": "^5.4",
"nesbot/carbon": "~1.21",
"psy/psysh": "@stable",
"loduis/illuminate-api": "1.0.*"
},
"require-dev": {
"phpunit/phpunit": "^5.7",
"vlucas/phpdotenv": "^2.2",
"mockery/mockery": "^0.9.4",
"fzaninotto/faker": "^1.6"
},
"config": {
"bin-dir": "bin"
},
"scripts": {
"test": "bin/phpunit",
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/loduis/illuminate-api.git"
}
],
"prefer-stable": true,
"minimum-stability": "dev"
}