-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
41 lines (41 loc) · 1.04 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
{
"name": "laravel-shift/curl-converter",
"description": "A command line tool to convert curl requests to Laravel HTTP requests.",
"type": "library",
"keywords": ["curl", "converter", "http", "laravel", "shift"],
"license": "MIT",
"require": {
"php": "^8.0",
"illuminate/console": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"symfony/var-exporter": "^6.3"
},
"require-dev": {
"laravel/pint": "^1.1",
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^7.0",
"phpunit/phpunit": "^9.5.10"
},
"autoload": {
"psr-4": {
"Shift\\CurlConverter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Shift\\CurlConverter\\Providers\\ServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}