-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.66 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
{
"name": "toobo/hop",
"description": "Higher-order functional predicates.",
"keywords": [
"function",
"functional programming",
"predicates",
"validation",
"filtering",
"assertions"
],
"homepage": "https://github.com/Toobo/Hop",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Giuseppe Mazzapica",
"email": "giuseppe.mazzapica@gmail.com",
"homepage": "https://gmazzap.me",
"role": "Developer"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5.25",
"inpsyde/php-coding-standards": "^1.0.0",
"vimeo/psalm": "^4.29.0"
},
"autoload": {
"files": [
"hop.php"
]
},
"autoload-dev": {
"psr-4": {
"Toobo\\Hop\\Tests\\": "tests/src/"
}
},
"config": {
"optimize-autoloader": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev",
"dev-1.x": "1.0.x-dev"
}
},
"scripts": {
"cs": "@php ./vendor/squizlabs/php_codesniffer/bin/phpcs",
"tests": "@php ./vendor/phpunit/phpunit/phpunit --coverage-text",
"tests:no-cov": "@php ./vendor/phpunit/phpunit/phpunit --no-coverage",
"psalm": "@php ./vendor/vimeo/psalm/psalm --output-format=compact --no-cache",
"qa": [
"@cs",
"@tests:no-cov",
"@psalm"
]
}
}