This repository was archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.54 KB
/
Copy pathcomposer.json
File metadata and controls
54 lines (54 loc) · 1.54 KB
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
{
"name": "lookyman/nette-oauth2-server",
"description": "Integration of The League of Extraordinary Packages' OAuth 2.0 Server into Nette Framework - base package",
"keywords": ["Nette", "League", "OAuth 2.0"],
"license": "MIT",
"authors": [
{
"name": "Lukáš Unger",
"email": "looky.msc@gmail.com",
"homepage": "https://lookyman.net"
}
],
"require": {
"php": "^7.1",
"kdyby/events": "^3.0",
"latte/latte": "^2.4, >=2.4.6",
"league/oauth2-server": "^7.0",
"nette/application": "^2.4, >=2.4.9",
"nette/security": "^2.4, >=2.4.2",
"nette/http": "^2.4, >=2.4.7",
"nextras/secured-links": "^1.3",
"psr/log": "^1.0",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"phpstan/phpstan": "^0.9.2",
"lookyman/coding-standard": "^0.1.0",
"phpstan/phpstan-nette": "^0.9.0",
"phpstan/phpstan-phpunit": "^0.9.4",
"phpstan/phpstan-strict-rules": "^0.9.0",
"jakub-onderka/php-parallel-lint": "^1.0"
},
"suggest": {
"psr/log-implementation": "Use PSR-3 logging."
},
"autoload": {
"psr-4": {
"Lookyman\\NetteOAuth2Server\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lookyman\\NetteOAuth2Server\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"cs": "phpcs --extensions=php --encoding=utf-8 -sp src tests",
"tests": "phpunit --coverage-text",
"stan": "phpstan analyse -c phpstan.neon -l 5 src tests",
"check": ["@lint", "@cs", "@tests", "@stan"]
}
}