forked from fr05t1k/esia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.37 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
{
"name": "ilimurzin/esia",
"description": "Пакет для входа через Госуслуги",
"license": "MIT",
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.0",
"psr/http-client": "^1.0",
"psr/http-message": "^2.0",
"psr/log": "^3.0"
},
"require-dev": {
"codeception/codeception": "^5.1.2",
"codeception/module-asserts": "^3.0.0",
"ergebnis/composer-normalize": "^2.45",
"friendsofphp/php-cs-fixer": "^3.67",
"phpstan/phpstan": "^2.1",
"roave/security-advisories": "dev-latest",
"webmasterskaya/crypto-pro-php-stubs": "dev-for-ilimurzin-esia"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/ilimurzin/crypto-pro-php-stubs.git"
}
],
"autoload": {
"psr-4": {
"Esia\\": "src/Esia"
}
},
"autoload-dev": {
"psr-4": {
"tests\\": "tests"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"lock": false,
"sort-packages": true
},
"scripts": {
"cs:check": "vendor/bin/php-cs-fixer check",
"cs:fix": "vendor/bin/php-cs-fixer fix",
"phpstan": "vendor/bin/phpstan",
"test": "vendor/bin/codecept run"
},
"scripts-descriptions": {
"cs:check": "Check code style rules",
"cs:fix": "Apply code style rules",
"phpstan": "Run code analysis",
"test": "Run test suite"
}
}