-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.34 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
{
"name": "rrd108/api-token-authenticator",
"description": "A Simple Token Authentication Plugin for CakePHP 5 REST API-s",
"version": "1.1.0",
"type": "cakephp-plugin",
"license": "MIT",
"autoload": {
"psr-4": {
"ApiTokenAuthenticator\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiTokenAuthenticator\\Test\\": "tests/",
"TestApp\\": "tests/test_app/src"
}
},
"authors": [
{
"name": "rrd",
"email": "[email protected]"
}
],
"require": {
"cakephp/authentication": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/cakephp": "^5.0",
"cakephp/cakephp-codesniffer": "^5.1"
},
"suggest": {
"rrd108/cakephp-cors": "Activate CORS domain in your application with Middleware",
"rrd108/cakephp-json-api-exception": "Make your CakePHP JSON REST API response more descriptive on errors",
"rrd108/vue-bake": "Bake VueJs components from CakePHP models"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "phpunit",
"cs-check": "phpcs --colors -p ./src ./tests",
"cs-fix": "phpcbf --colors -p ./src ./tests"
}
}