-
Notifications
You must be signed in to change notification settings - Fork 64
/
composer.json
88 lines (88 loc) · 2.53 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "friendsofcake/cakephp-csvview",
"description": "A CSV View class for CakePHP",
"type": "cakephp-plugin",
"keywords": [
"cakephp",
"csv",
"view",
"export"
],
"homepage": "https://github.com/friendsofcake/cakephp-csvview",
"license": "MIT",
"authors": [
{
"name": "Jose Diaz-Gonzalez",
"email": "[email protected]",
"homepage": "https://josediazgonzalez.com",
"role": "Maintainer"
},
{
"name": "ADmad",
"role": "Contributor",
"homepage": "https://github.com/admad"
},
{
"name": "Mark Scherer",
"role": "Contributor",
"homepage": "https://github.com/dereuromark"
},
{
"name": "Joshua Paling",
"role": "Contributor",
"homepage": "https://github.com/joshuapaling"
},
{
"name": "Gaurish Sharma",
"role": "Contributor",
"homepage": "https://github.com/gaurish"
},
{
"name": "Gregory Gaskill",
"role": "Contributor",
"homepage": "https://github.com/chronon"
}
],
"require": {
"cakephp/cakephp": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"cakephp/cakephp-codesniffer": "^5.0"
},
"autoload": {
"psr-4": {
"CsvView\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CsvView\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"Cake\\Test\\Fixture\\": "./vendor/cakephp/cakephp/tests/Fixture"
}
},
"support": {
"issues": "https://github.com/friendsofcake/cakephp-csvview/issues",
"source": "https://github.com/friendsofcake/cakephp-csvview"
},
"scripts": {
"check": [
"@cs-check",
"@test"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"stan": "phpstan analyse && psalm",
"phpstan": "phpstan analyse",
"psalm": "psalm --show-info=false",
"stan-setup": "cp composer.json composer.backup && composer require --dev phpstan/phpstan:^1.0.0 vimeo/psalm:^5.0 && mv composer.backup composer.json",
"test-coverage": "phpunit --coverage-clover=clover.xml"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}