-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.83 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
{
"name": "pckg/auth",
"description": "Provides basic functionality for authentication and authorization users in database, on Twitter, Facebook and with OAuth2 standard",
"homepage": "https://github.com/pckg/auth",
"license": "MIT",
"authors": [
{
"name": "Bojan Rajh",
"email": "[email protected]"
}
],
"replace": {
"pckg-app/frontend": "dev-next-8.0 as dev-master"
},
"require": {
"ext-json": "*"
},
"require-dev": {
"pckg/framework": "dev-next-8.0 as dev-master",
"pckg/database": "dev-next-8.0 as dev-master",
"pckg/collection": "dev-next-8.0 as dev-master",
"pckg-app/frontend-dev": "dev-next-8.0 as dev-master",
"pckg-app/api": "dev-next-8.0 as dev-master",
"pckg/mail": "dev-master",
"pckg/htmlbuilder": "dev-next-8.0 as dev-master",
"pckg/manager": "dev-next-8.0 as dev-master",
"pckg/concept": "dev-master",
"pckg/migrator": "dev-next-8.0 as dev-master",
"league/oauth2-client": "^2.6",
"defuse/php-encryption": "^2.0"
},
"autoload": {
"psr-0": {
"Pckg": "src\\"
}
},
"scripts": {
"test": [
"true || vendor/bin/phpunit --help --stop-on-defect",
"true || vendor/bin/phpcloc cloc src/",
"vendor/bin/phpstan analyse src/ --level=6 || vendor/bin/phpstan analyse src/ --level=5",
"vendor/bin/phpcs --extensions=php --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/",
"vendor/bin/codecept run"
],
"autofix": [
"vendor/bin/phpcs --extensions=php --report-diff=phpcs.diff --warning-severity=8 --error-severity=1 --standard=PSR12 --parallel=2 -p src/"
],
"autopatch": [
"patch -p0 -ui phpcs.diff && rm phpcs.diff"
]
},
"scripts-descriptions": {
"test": "Run all tests and quality checks"
},
"minimum-stability": "dev",
"prefer-stable": true
}