-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
42 lines (42 loc) · 935 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
37
38
39
40
41
42
{
"name": "tomschlick/laravel-http2-server-push",
"description": "A middleware package for Laravel to enable server push for your script, style, and image assets.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Tom Schlick",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"illuminate/contracts": "^5.1|^6.0|^7.0|^8.0",
"illuminate/support": "^5.1|^6.0|^7.0|^8.0",
"illuminate/http": "^5.1|^6.0|^7.0|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^5.4",
"graham-campbell/testbench": "^3.1"
},
"autoload": {
"psr-4": {
"TomSchlick\\ServerPush\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"TomSchlick\\ServerPush\\Tests\\": "tests/"
}
},
"extra" : {
"laravel" : {
"providers" : [
"TomSchlick\\ServerPush\\ServiceProvider"
]
}
}
}