-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathcomposer.json
More file actions
83 lines (83 loc) · 2 KB
/
Copy pathcomposer.json
File metadata and controls
83 lines (83 loc) · 2 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
78
79
80
81
82
83
{
"name": "meabed/php-parallel-soap",
"description": "Parallel, multi-curl PHP SoapClient that performs many SOAP requests concurrently",
"keywords": [
"soap",
"soap-client",
"curl",
"curl-multi",
"multicurl",
"parallel",
"concurrent",
"asynchronous",
"async",
"wsdl",
"php8"
],
"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",
"test": "phpunit",
"test-cov": "phpunit --coverage-text --coverage-clover=coverage.xml",
"test-html": "phpunit --coverage-text --coverage-clover=coverage.xml --coverage-html=./report/",
"ci": [
"@lint",
"@check-style",
"@stan",
"@test"
],
"dev-server": "php -S 127.0.0.1:8999 tests/Fixtures/http-server.php",
"test-external": "phpunit --group external",
"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": "mo.meabed@gmail.com"
}
],
"autoload": {
"psr-4": {
"Meabed\\ParallelSoap\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=8.0",
"ext-soap": "*",
"ext-curl": "*",
"ext-libxml": "*",
"psr/log": "~1.1 || ~2.0 || ~3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.5 || ^12.0 || ^13.0",
"squizlabs/php_codesniffer": "^4.0",
"overtrue/phplint": "^9.6",
"phpstan/phpstan": "^2.1"
}
}