-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
64 lines (64 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "jerome/fetch-php",
"description": "The JavaScript fetch API for PHP.",
"version": "2.0.3",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jerome Thayananthajothy",
"email": "[email protected]"
}
],
"homepage": "https://fetch-php.thavarshan.com",
"support": {
"issues": "https://github.com/Thavarshan/fetch-php/issues",
"source": "https://github.com/Thavarshan/fetch-php"
},
"autoload": {
"psr-4": {
"Fetch\\": "src/Fetch/"
},
"files": [
"src/Fetch/Http/fetch.php"
]
},
"require": {
"php": "^8.0",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"psr/http-message": "^1.0|^2.0",
"jerome/matrix": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"mockery/mockery": "^1.6",
"pestphp/pest": "^2.0|^3.0",
"phpstan/phpstan": "^1.11.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^6.0|^7.2"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"analyse": "chmod +x bin/analysis.sh && ./bin/analysis.sh",
"lint": "chmod +x bin/lint.sh && ./bin/lint.sh",
"fix": "chmod +x bin/fix.sh && ./bin/fix.sh"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}