This repository was archived by the owner on Aug 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.47 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.47 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
{
"name": "alt3/cakephp-tokens",
"description": "CakePHP plugin for generating various (secure) tokens",
"keywords": [
"cakephp",
"tokens",
"alt3"
],
"type": "cakephp-plugin",
"homepage": "https://github.com/alt3/cakephp-tokens",
"support": {
"issues": "https://github.com/alt3/cakephp-tokens/issues",
"source": "https://github.com/alt3/cakephp-tokens"
},
"license": "MIT",
"authors": [
{
"name": "bravo-kernel"
}
],
"require": {
"php": ">=5.5.9",
"cakephp/cakephp": "3.*",
"alt3/tokens": "^1.0"
},
"require-dev": {
"cakephp/cakephp": "3.*",
"phpunit/phpunit": "5.*",
"squizlabs/php_codesniffer": "^2.5",
"cakephp/cakephp-codesniffer": "dev-master"
},
"support": {
"issues": "https://github.com/alt3/cakephp-tokens/issues",
"source": "https://github.com/alt3/cakephp-tokens"
},
"autoload": {
"psr-4": {
"Alt3\\CakeTokens\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Alt3\\CakeTokens\\Test\\": "tests"
}
},
"minimum-stability": "stable",
"scripts": {
"tests": "./vendor/bin/phpunit",
"cs": "./vendor/bin/phpcs -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests"
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}