-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (55 loc) · 1.63 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
{
"name": "erwane/cakephp-contact",
"description": "Cakephp plugin for manipulating Contact information (address, phone, ...)",
"type": "cakephp-plugin",
"keywords": ["cakephp", "contact", "phone", "address"],
"license": "MIT",
"authors": [
{
"name": "Erwane Breton",
"email": "[email protected]",
"homepage": "https://erwane-breton.fr",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/Erwane/cakephp-contact/issues",
"source": "https://github.com/Erwane/cakephp-contact",
"docs": "https://github.com/Erwane/cakephp-contact/blob/master/README.md"
},
"require": {
"php": "^8.1",
"ext-json": "*",
"cakephp/cakephp": "^5.0",
"giggsey/libphonenumber-for-php": "^8.13"
},
"require-dev": {
"cakephp/cakephp-codesniffer": "^5.0",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp": "^2.0",
"phpunit/phpunit": "^10.5.5 || ^11.1.3"
},
"autoload": {
"psr-4": {
"Contact\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Contact\\Test\\": "tests",
"Contact\\TestApp\\": "tests/test_app/TestApp/"
}
},
"scripts": {
"cscheck": "vendor/bin/phpcs -p src/ tests/",
"csfix": "vendor/bin/phpcbf -p src/ tests/"
},
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpro/grumphp": true
}
}
}