-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 963 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
43
44
{
"name": "aw-studio/prepper",
"license": "MIT",
"authors": [
{
"name": "jannescb",
"email": "jannes@aw-studio.de"
}
],
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"AwStudio\\Prepper\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"require": {
"php": "^8.0 | ^8.1 | ^8.2 | ^8.3",
"guzzlehttp/guzzle": "^7.3",
"illuminate/support": "^8 | ^9 | ^10 | ^11"
},
"require-dev": {
"phpunit/phpunit": "^9.4",
"mockery/mockery": "^1.4"
},
"extra": {
"laravel": {
"providers": [
"AwStudio\\Prepper\\PrepperServiceProvider"
]
},
"branch-alias": {
"dev-master": "1.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}