-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.23 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
{
"name": "nunomaduro/curryable",
"description": "An elegant and simple curry(f) implementation in PHP.",
"keywords": [
"php",
"curry",
"laravel",
"package"
],
"license": "MIT",
"authors": [
{
"name": "Nuno Maduro",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2 || ^8.0"
},
"require-dev": {
"pestphp/pest": "^0.3",
"phpstan/phpstan": "^0.12"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"NunoMaduro\\Curryable\\": "src/"
},
"files": [
"src/globals.php"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist"
},
"scripts": {
"test:types": "phpstan analyse --ansi",
"test:unit": "pest",
"test": [
"@test:types",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"NunoMaduro\\Curryable\\Adapters\\Laravel\\CurryableServiceProvider"
]
}
}
}