-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
46 lines (46 loc) · 1.06 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
{
"name": "angrybytes/hash",
"description": "Object Oriented hash interface",
"authors": [
{
"name": "Angry Bytes BV",
"email": "info@angrybytes.com",
"role": "owner",
"homepage": "http://angrybytes.com/"
},
{
"name": "Maurice Fonk",
"email": "maurice@naneau.net",
"role": "developer"
}
],
"minimum-stability": "stable",
"license": "MIT",
"autoload": {
"psr-0": {
"AngryBytes\\Hash": "src/",
"AngryBytes\\Hash\\Test": "tests/"
}
},
"scripts": {
"phpcheck": [
"./vendor/bin/phpstan analyse -l max --memory-limit=1G src/ tests/",
"./vendor/bin/phpcs -p --standard=PSR2 --extensions=php src/ tests/"
],
"phpcbf": [
"./vendor/bin/phpcbf -p --standard=PSR2 --extensions=php src/ tests/"
],
"phpunit": [
"./vendor/bin/phpunit"
]
},
"require": {
"php": "8.2 - 8.4"
},
"require-dev": {
"phpstan/phpstan": "2.0.3",
"phpunit/phpunit": "11.5.1",
"squizlabs/php_codesniffer": "3.11.2",
"friendsofphp/php-cs-fixer": "^3.65"
}
}