-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
88 lines (85 loc) · 2.36 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "sebastiaanluca/laravel-boolean-dates",
"type": "library",
"description": "Automatically convert Eloquent model boolean attributes to dates (and back).",
"keywords": [
"bool",
"boolean",
"convert",
"dates",
"datetimes",
"eloquent",
"laravel",
"model",
"php",
"timestamps"
],
"homepage": "https://github.com/sebastiaanluca/laravel-boolean-dates",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Luca",
"email": "[email protected]",
"homepage": "https://sebastiaanluca.com",
"role": "Author"
}
],
"require": {
"php": "~8.2|~8.3",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.50",
"laravel/pint": "^1.14",
"phpunit/phpunit": "^11.0.3",
"rector/rector": "^1.0.1",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"SebastiaanLuca\\BooleanDates\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SebastiaanLuca\\BooleanDates\\Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-update-cmd": [
"@fix"
],
"validate:composer": "@composer validate --strict --ansi",
"pint:check": "@php vendor/bin/pint --test --ansi",
"pint": "@php vendor/bin/pint --ansi",
"rector:check": "@php vendor/bin/rector --dry-run --ansi",
"rector": "@php vendor/bin/rector --ansi",
"phpunit": "@php vendor/bin/phpunit --order-by=random",
"test": [
"@validate:composer",
"@pint:check",
"@rector:check",
"@phpunit"
],
"fix": [
"@pint",
"@rector"
],
"test:lowest": [
"composer update --prefer-lowest --prefer-dist --no-interaction --ansi",
"@test"
],
"test:stable": [
"composer update --prefer-stable --prefer-dist --no-interaction --ansi",
"@test"
]
}
}