-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.21 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
70
71
72
73
74
75
76
77
78
79
{
"name": "unnikrishnanbhargavakurup/hellocoop",
"description": "Hellō identity provider(IdP) client in PHP",
"keywords": [
"Identity Provider",
"Authentication",
"Authorization",
"Single Sign-On",
"Federated Identity"
],
"type": "library",
"require": {
"php": ">=7.4 <=8.4.1",
"ext-json": "*",
"ext-openssl": "*",
"ext-curl": "*"
},
"license": "MIT",
"autoload": {
"psr-4": {
"HelloCoop\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HelloCoop\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Unnikrishnan",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"php-mock/php-mock-phpunit": "^2.10",
"php-parallel-lint/php-parallel-lint": "^1.1",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-mockery": "^1.1",
"phpstan/phpstan-phpunit": "^1.1",
"phpunit/phpunit": "^9.6",
"slevomat/coding-standard": "^8.4",
"squizlabs/php_codesniffer": "^3.11",
"vimeo/psalm": "^5.26",
"friendsofphp/php-cs-fixer": "^3.65"
},
"scripts": {
"analyze": [
"@phpstan",
"@psalm"
],
"build:clean": "git clean -fX build/",
"lint": "parallel-lint src tests",
"lint:paths": "parallel-lint",
"phpcs": "phpcs --standard=PSR12 --exclude=Generic.Files.LineLength",
"phpstan": [
"phpstan analyse --no-progress --memory-limit=1G",
"phpstan analyse -c phpstan-tests.neon --no-progress --memory-limit=1G"
],
"phpunit": "phpunit --verbose --colors=always",
"phpunit-coverage": "phpunit --verbose --colors=always --coverage-html build/coverage",
"psalm": "psalm --show-info=false --config=psalm.xml",
"test": [
"@lint",
"@phpstan",
"@psalm",
"@phpunit"
]
},
"archive": {
"exclude": ["example"]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}