-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 987 Bytes
/
composer.json
File metadata and controls
50 lines (50 loc) · 987 Bytes
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
{
"name": "alohi/signplus",
"version": "2.4.0",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.0",
"symfony/serializer": "^7.0",
"guzzlehttp/guzzle": "^7.0",
"symfony/property-info": "^7.0",
"symfony/property-access": "^7.0",
"phpdocumentor/reflection-docblock": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9",
"laravel/pint": "^1.13.7",
"phpstan/phpstan": "^1.8",
"php-http/mock-client": "^1.6",
"nyholm/psr7": "^1.8"
},
"autoload": {
"psr-4": {
"Signplus\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Signplus\\": "tests/"
}
},
"scripts": {
"pint": [
"./vendor/bin/pint"
],
"refactor": [
"./vendor/bin/rector --debug"
],
"stan": [
"./vendor/bin/phpstan analyse src test"
],
"test": [
"./vendor/bin/phpunit --testdox"
]
},
"config": {
"allow-plugins": {
"php-http/discovery": true
}
}
}