-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
46 lines (46 loc) · 1.3 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": "softonic/laravel-collection-extended",
"type": "library",
"description" : "Additional collection methods.",
"keywords": ["laravel", "collection", "extra"],
"license": "Apache-2.0",
"homepage": "https://github.com/softonic/laravel-collection-extended",
"support": {
"issues": "https://github.com/softonic/laravel-collection-extended/issues"
},
"require": {
"php": ">=8.2",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.0",
"phpstan/phpstan": "^0.11|^1.8",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3"
},
"autoload": {
"psr-4": {
"Softonic\\Laravel\\Collection\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Softonic\\Laravel\\Collection\\": "tests/"
}
},
"scripts": {
"tests": "phpunit --coverage-text; php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"phpstan": "phpstan analyse -l 7 src --no-interaction --no-progress",
"phpunit": "phpunit --coverage-text",
"phpcs": "php-cs-fixer fix -v --diff --dry-run --allow-risky=yes;",
"fix-cs": "php-cs-fixer fix -v --diff --allow-risky=yes;"
},
"extra": {
"laravel": {
"providers": [
"Softonic\\Laravel\\Collection\\ServiceProvider"
]
}
}
}