-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (68 loc) · 2.02 KB
/
composer.json
File metadata and controls
68 lines (68 loc) · 2.02 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
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "phpmyadmin/error-reporting-server",
"type": "application",
"description": "phpMyAdmin server side component for the error reporting system",
"keywords": ["phpmyadmin","mysql","web"],
"homepage": "https://www.phpmyadmin.net/",
"license": "MIT",
"authors": [
{
"name": "The phpMyAdmin Team",
"email": "developers@phpmyadmin.net",
"homepage": "https://www.phpmyadmin.net/team/"
}
],
"support": {
"issues": "https://github.com/phpmyadmin/error-reporting-server/issues",
"wiki": "https://wiki.phpmyadmin.net/",
"source": "https://github.com/phpmyadmin/error-reporting-server"
},
"require": {
"php": "^8.4",
"ext-curl": "*",
"cakephp/cakephp": "5.3.*",
"cakephp/migrations": "^5.0",
"cakephp/plugin-installer": "^2.0",
"composer/ca-bundle": "^1.3"
},
"require-dev": {
"cakedc/cakephp-phpstan": "^4",
"cakephp/bake": "^3.6",
"cakephp/debug_kit": "^5.0",
"php-mock/php-mock-phpunit": "^2.6",
"phpmyadmin/coding-standard": "^3",
"phpstan/phpstan": "^2",
"phpunit/phpunit": "^13.0",
"psy/psysh": "@stable"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"check": [
"@test",
"@phpcs"
],
"phpcs": "@php ./vendor/bin/phpcs",
"phpcbf": "@php ./vendor/bin/phpcbf",
"test": "@php ./vendor/bin/phpunit",
"phpstan": "@php ./vendor/bin/phpstan"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"cakephp/plugin-installer": true
}
}
}