-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
67 lines (67 loc) · 2.08 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
{
"name": "bedita/import-tools",
"description": "Import Tools for data import with BEdita",
"type": "cakephp-plugin",
"license": "LGPL-3.0-or-later",
"support": {
"source": "/~https://github.com/bedita/import-tools",
"issues": "/~https://github.com/bedita/import-tools/issues"
},
"authors": [
{
"name": "Atlas Consulting s.r.l.",
"email": "info@atlasconsulting.it",
"homepage": "https://www.atlasconsulting.it"
},
{
"name": "Chia Lab s.r.l.",
"email": "dev@chialab.it",
"homepage": "http://www.chialab.it"
}
],
"require": {
"php": ">= 8.3",
"cakephp/cakephp": "^4.5",
"bedita/api": "^5.36",
"bedita/core": "^5.36",
"bedita/i18n": "^5.0",
"fakerphp/faker": "^1.23"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "~4.7",
"phpstan/phpstan": "^1.10",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpunit/phpunit": "^9.6"
},
"autoload": {
"psr-4": {
"BEdita\\ImportTools\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"BEdita\\Core\\Test\\": "vendor/bedita/core/tests/",
"BEdita\\ImportTools\\Test\\": "tests/",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"check": [
"@test",
"@cs-check"
],
"cs-check": "vendor/bin/phpcs --colors -p --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"cs-fix": "vendor/bin/phpcbf --colors --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests",
"test": "vendor/bin/phpunit --colors=always",
"stan": "vendor/bin/phpstan analyse"
},
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"cakephp/plugin-installer": true
}
}
}