-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.59 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
{
"name": "khalyomede/reorder-before-after",
"description": "Reorder an item in an array before or after another.",
"type": "library",
"license": "MIT",
"version": "0.4.0",
"keywords": [
"reorder",
"sort",
"before",
"after"
],
"autoload": {
"psr-4": {
"Khalyomede\\ReorderBeforeAfter\\": "src/",
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Khalyomede",
"email": "khalyomede@gmail.com"
}
],
"minimum-stability": "stable",
"require-dev": {
"phpstan/phpstan": "1.10.46",
"pestphp/pest": "2.25.0",
"phpstan/phpstan-strict-rules": "1.5.2",
"friendsofphp/php-cs-fixer": "3.40.0",
"rector/rector": "0.18.11"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": "pest",
"analyse": "phpstan",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --using-cache=no --allow-risky=yes fix",
"check": "composer audit --locked --no-dev",
"updates": "composer outdated --direct --strict --ignore nunomaduro/larastan",
"scan": "rector process --dry-run",
"modernize": "rector process",
"all": "composer run test && composer run analyse && composer run lint && composer run check && composer run updates && composer run scan"
},
"require": {
"php": ">=8.1.0"
}
}