-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
46 lines (46 loc) · 1.05 KB
/
composer.json
File metadata and controls
46 lines (46 loc) · 1.05 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
46
{
"name": "codewithsushil/curler",
"description": "cURL wrapper for API calling",
"type": "library",
"keywords": ["api","curler","curl"],
"require": {
"php": "^8.2",
"vlucas/phpdotenv": "^5.6"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Curler\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sushil Kumar",
"email": "sushilkumbhar77@gmail.com"
}
],
"scripts": {
"test:unit": "phpunit",
"test:types": "phpstan analyse --ansi",
"tests": ["@test:unit", "@test:types"]
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"preferred-install": "dist",
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}