-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1 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
{
"name": "cavephp/cavephp",
"description": "The core the CavePHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Robert Snedeker",
"email": "rsnedeker20@gmail.com"
},
{
"name": "Diego Casillas",
"email": "diegoboyphone@gmail.com"
}
],
"require": {
"php": ">=8.2",
"react/socket": "^1.14",
"commandstring/utils": "^1.7"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"phpunit/phpunit": "^10.1"
},
"autoload": {
"psr-4": {
"CavePHP\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"CavePHP\\Tests\\": "tests/"
}
},
"scripts": {
"fix": "php-cs-fixer fix --using-cache=no",
"fix:dry": "php-cs-fixer fix --using-cache=no --diff --dry-run",
"test": "phpunit",
"test:coverage": "phpunit --coverage-html .phpunit.cache/cov-html"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": false
}
}
}