forked from utopia-php/fetch
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
26 lines (26 loc) · 746 Bytes
/
composer.json
File metadata and controls
26 lines (26 loc) · 746 Bytes
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
{
"name": "utopia-php/fetch",
"description": "A simple library that provides an interface for making HTTP Requests.",
"type": "library",
"license": "MIT",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"laravel/pint": "^1.5.0",
"phpstan/phpstan": "^1.10"
},
"scripts": {
"lint": "./vendor/bin/pint --test --config pint.json",
"format": "./vendor/bin/pint --config pint.json",
"check": "./vendor/bin/phpstan analyse -c phpstan.neon",
"test": "./vendor/bin/phpunit --configuration phpunit.xml --debug"
},
"autoload": {
"psr-4": {
"Utopia\\Fetch\\": "src/"
}
},
"authors": []
}