forked from octoper/cuzzle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.19 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
{
"name": "octoper/cuzzle",
"description": "Get the cURL shell command from a Guzzle request",
"require": {
"php": ">=7.3",
"guzzlehttp/guzzle": "^7.3",
"psr/log": "^1.1 | ^2.0 | ^3.0",
"symfony/process": "^5.3 | ^6.0 | ^7.0 "
},
"require-dev": {
"phpunit/phpunit": "^9.5.8",
"pestphp/pest": "^1.15",
"phpstan/phpstan": "^0.12.94"
},
"autoload": {
"psr-4": {
"Namshi\\Cuzzle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Vaggelis Yfantis",
"email": "[email protected]"
},
{
"name": "cirpo",
"email": "[email protected]"
},
{
"name": "Nikita Nefedov",
"email": "[email protected]"
}
],
"scripts": {
"test:types": "phpstan analyse --ansi --memory-limit=0",
"test:unit": "pest --colors=always",
"test": [
"@test:types",
"@test:unit"
]
}
}