-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
69 lines (69 loc) · 1.67 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
65
66
67
68
69
{
"name": "meabed/php-parallel-soap",
"version": "3.0.1",
"description": "Multi curl SoapClient that allow to perform multiple requests to SoapServer",
"keywords": [
"Soap",
"Curl",
"multicurl",
"parallel",
"Asynchronous"
],
"homepage": "https://github.com/meabed/php-parallel-soap",
"license": "MIT",
"type": "library",
"scripts": {
"check-style": "phpcs src tests",
"fix-style": "phpcbf src tests",
"install-dev": "composer install --no-interaction",
"install-prod": "composer install --no-dev --no-interaction",
"lint": "phplint",
"stan": "phpstan analyse src",
"test": "phpunit",
"test-cov": "phpunit --coverage-text --coverage-clover=coverage.xml",
"test-html": "phpunit --coverage-text --coverage-clover=coverage.xml --coverage-html=./report/",
"update-dev": "composer update",
"update-prod": "composer update --no-dev"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"process-timeout": 1000000,
"sort-packages": true
},
"authors": [
{
"name": "Mohamed Meabed",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Soap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8",
"ext-soap": "*",
"ext-curl": "*",
"psr/log": "~1.1|~2.0|~3.0"
},
"require-dev": {
"phpunit/phpunit": "~9|~10",
"squizlabs/php_codesniffer": "3.10.3",
"overtrue/phplint": "9.5.3",
"phpstan/phpstan": "1.12.7"
}
}