-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
58 lines (58 loc) · 1.6 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
{
"name": "nonz250/smaregi-api-php",
"description": "Smaregi Platform API client.",
"license": "MIT",
"autoload": {
"psr-4": {
"Nonz250\\SmaregiApiPhp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "nonz250",
"email": "hosaka.non.work@gmail.com"
}
],
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"require": {
"php": "^8.1",
"fig/http-message-util": "^1.1",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"league/oauth2-client": "^2.7"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^10.2",
"friendsofphp/php-cs-fixer": "^3.17",
"phpstan/phpstan": "^1.10",
"fakerphp/faker": "^1.23",
"nyholm/psr7": "^1.8",
"php-http/curl-client": "^2.3",
"vlucas/phpdotenv": "^5.5",
"mockery/mockery": "^1.6"
},
"suggest": {
"nyholm/psr7": "A fast PHP7 implementation of PSR-7/PSR-17",
"symfony/http-client": "Symfony HttpClient component implement PSR-18",
"php-http/curl-client": "Another PSR-18 HttpClient implementation"
},
"scripts": {
"php-cs-fixer": "vendor/bin/php-cs-fixer fix --dry-run",
"phpstan": "vendor/bin/phpstan analyze",
"phpunit": "vendor/bin/phpunit --coverage-text"
}
}