-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.02 KB
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "biohzrdmx/curly-php",
"description": "Easy to use, general purpose CuRL wrapper",
"version": "2.2",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "biohzrdmx",
"email": "hi@biohzrdmx.me",
"homepage": "https://biohzrdmx.me"
}
],
"require": {
"php": ">=7.1",
"ext-mbstring": "*"
},
"require-dev": {
"phpstan/phpstan": "~0.12.80",
"phpunit/phpunit": "^9",
"pcov/clobber": "^2.0"
},
"autoload": {
"psr-4": { "Curly\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"Curly\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --configuration phpstan.neon --level 7 --error-format=json --memory-limit=1G --no-interaction --no-progress src > tests/output/phpstan.json",
"coverage": "phpunit --coverage-text --coverage-filter src/",
"test": "phpunit tests"
},
"minimum-stability": "stable"
}