-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 1.79 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "brammo/auth",
"description": "Authentication plugin for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"plugin",
"authentication"
],
"homepage": "https://github.com/brammo/auth",
"authors": [
{
"name": "Roman Sidorkin",
"email": "roman.sidorkin@gmail.com",
"role": "Author"
}
],
"license": "MIT",
"version": "1.1.0",
"prefer-stable": true,
"require": {
"php": ">=8.1",
"cakephp/authentication": "^3.0",
"cakephp/cakephp": "^5.0",
"cakephp/migrations": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"cakephp/cakephp-codesniffer": "^5.0",
"phpstan/phpstan": "^1.10",
"vimeo/psalm": "^5.0"
},
"autoload": {
"psr-4": {
"Brammo\\Auth\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Brammo\\Auth\\Test\\": "tests",
"Brammo\\Auth\\Test\\Fixture\\": "tests",
"TestApp\\": "tests/test_app/TestApp/"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"analyse": [
"@stan",
"@psalm"
],
"cs-check": "phpcs --colors -p",
"cs-fix": "phpcbf --colors -p",
"test": "phpunit --colors=always",
"stan": "phpstan analyse",
"stan-baseline": "phpstan analyse --generate-baseline",
"psalm": "psalm --show-info=false",
"psalm-baseline": "psalm --set-baseline=psalm-baseline.xml",
"coverage-test": "phpunit --stderr --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}