This repository has been archived by the owner on May 4, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
50 lines (50 loc) · 1.57 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
{
"name": "lookyman/nette-oauth2-server-doctrine",
"description": "Integration of The League of Extraordinary Packages' OAuth 2.0 Server into Nette Framework - Kdyby/Doctrine storage implementation",
"keywords": ["Nette", "League", "OAuth 2.0", "Kdyby", "Doctrine"],
"license": "MIT",
"authors": [
{
"name": "Lukáš Unger",
"email": "[email protected]",
"homepage": "https://lookyman.net"
}
],
"require": {
"php": "^7.1",
"kdyby/doctrine": "^3.3",
"kdyby/events": "^3.1, >=3.1.2",
"league/oauth2-server": "^7.0",
"nette/application": "^2.4, >=2.4.9",
"nette/di": "^2.4, >=2.4.10",
"lookyman/nette-oauth2-server": "^3.0",
"nette/caching": "^2.5, >=2.5.6"
},
"require-dev": {
"nette/bootstrap": "^2.4, >=2.4.5",
"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"
},
"autoload": {
"psr-4": {
"Lookyman\\NetteOAuth2Server\\Storage\\Doctrine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lookyman\\NetteOAuth2Server\\Storage\\Doctrine\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "parallel-lint src tests",
"cs": "phpcs --extensions=php --encoding=utf-8 -sp --ignore=*/tests/temp/* src tests",
"tests": "phpunit --coverage-text",
"stan": "phpstan analyse -c phpstan.neon -l 5 src tests",
"check": ["@lint", "@cs", "@tests", "@stan"]
}
}