-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 1.09 KB
/
composer.json
File metadata and controls
45 lines (45 loc) · 1.09 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
{
"name": "midnite81/prowl",
"description": "A PHP wrapper for Prowl with a Laravel Integration",
"keywords": [
"php",
"prowl",
"laravel"
],
"type": "php",
"license": "MIT",
"authors": [
{
"name": "Simon Rogers",
"email": "webdev@centralblue.co.uk"
}
],
"require": {
"php": ">=5.5.9",
"php-http/guzzle6-adapter": "^1.1",
"php-http/client-implementation": "^1",
"php-http/message": "^1.5",
"php-http/discovery": "^1.2.1",
"nesbot/carbon": "^1.3|^2.0",
"midnite81/xml2array": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6|^7",
"mockery/mockery": "^1.1",
"satooshi/php-coveralls": "1.0.*",
"symfony/finder": "^3.4|^4.1"
},
"autoload": {
"psr-4": {
"Midnite81\\Prowl\\": "src/",
"Midnite81\\Prowl\\Tests\\": "tests/"
}
},
"extra": {
"component": "package",
"frameworks": [
"Laravel 5"
]
},
"minimum-stability": "stable"
}