-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
68 lines (68 loc) · 2.11 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
{
"name": "iansimpson/ss-oauth2-server",
"description": "Silverstripe OAuth 2.0 Server",
"license": "MIT",
"type": "silverstripe-vendormodule",
"keywords": [
"silverstripe",
"oauth",
"oauth2",
"oauth 2",
"oauth 2.0"
],
"authors": [
{
"name": "Ian Simpson",
"email": "[email protected]"
}
],
"homepage": "https://logicstudio.nz",
"require": {
"php": "^8.1",
"guzzlehttp/psr7": "^2.5",
"league/oauth2-server": "^8.2",
"monolog/monolog": "^1.2",
"robbie/psr7-adapters": "^1",
"silverstripe/framework": "^4.13",
"silverstripe/siteconfig": "^4.13"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-strict-rules": "^1.5",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.9",
"syntro/silverstripe-phpstan": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"IanSimpson\\OAuth2\\": "code/"
}
},
"autoload-dev": {
"psr-4": {
"IanSimpson\\OAuth2\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"phpstan/extension-installer": true,
"silverstripe/vendor-plugin": true
},
"sort-packages": true
},
"scripts": {
"php-lint": "parallel-lint code tests",
"phpcbf": "phpcbf --standard=phpcs.xml.dist --extensions=php --encoding=utf-8",
"phpcs": "phpcs --standard=phpcs.xml.dist --extensions=php --encoding=utf-8",
"stan": "phpstan clear-result-cache && phpstan analyse --ansi --memory-limit=-1",
"stan-cache": "phpstan analyse --ansi --memory-limit=-1",
"stan-debug": "phpstan clear-result-cache && phpstan analyze --ansi --memory-limit=-1 --debug",
"test": "phpunit --verbose -d flush=1"
}
}