-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.21 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
{
"name": "ozdemir/subset-finder",
"description": "A simple package to find the subset of a given set.",
"keywords": [
"ozdemir",
"laravel",
"collections",
"subset"
],
"homepage": "https://github.com/ozdemir/subset-finder",
"license": "MIT",
"authors": [
{
"name": "Yusuf Özdemir",
"email": "yusuf@ozdemir.be",
"role": "Owner"
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^10.0"
},
"require-dev": {
"nunomaduro/collision": "^7.0",
"orchestra/testbench": "^v8.5",
"pestphp/pest": "^2.0"
},
"autoload": {
"psr-4": {
"Ozdemir\\SubsetFinder\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ozdemir\\SubsetFinder\\Tests\\": "tests"
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse",
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}