-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.24 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.24 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jerome/fetch-php",
"description": "The JavaScript fetch API for PHP.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Jerome Thayananthajothy",
"email": "tjthavarshan@gmail.com"
}
],
"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/Support/helpers.php"
]
},
"require": {
"php": "^8.3",
"ext-pcntl": "*",
"guzzlehttp/guzzle": "^7.9",
"guzzlehttp/psr7": "^2.7",
"jerome/matrix": "^3.4",
"psr/http-message": "^1.0|^2.0",
"psr/log": "^1.0|^2.0|^3.0",
"react/event-loop": "^1.5",
"react/promise": "^3.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"laravel/pint": "^1.21",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.11.5",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^6.0|^7.2",
"tightenco/duster": "^3.2"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"lint": "duster lint src",
"fix": "duster fix src",
"test": "phpunit --no-coverage",
"test:unit": "phpunit --no-coverage tests/Unit",
"test:integration": "phpunit --no-coverage tests/Integration",
"test:coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=coverage --coverage-text --coverage-xml=coverage",
"analyse": "phpstan analyse",
"check": [
"@analyse",
"@lint",
"@test"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true,
"php-http/discovery": true,
"dealerdirect/phpcodesniffer-composer-installer": true
},
"optimize-autoloader": true,
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}