-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
76 lines (76 loc) · 2.12 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
{
"name": "psion-ar/php-cli-image",
"description": "PHP CLI image processing.",
"keywords": ["php", "cli", "image"],
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/psion-ar/php-cli-image/issues",
"source": "https://github.com/psion-ar/php-cli-image"
},
"authors": [
{
"name": "Alex Roth",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2.0",
"illuminate/validation": "^11.27",
"laravel-zero/framework": "^11.0.0",
"laravel-zero/phar-updater": "^1.4",
"spatie/image": "^3.7",
"spatie/temporary-directory": "^2.2",
"webmozart/assert": "^1.11"
},
"require-dev": {
"larastan/larastan": "^2.9",
"laravel/pint": "^1.15.2",
"mockery/mockery": "^1.6.11",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-type-coverage": "^3.0",
"phpstan/phpstan": "^1.12",
"phpstan/phpstan-webmozart-assert": "^1.2",
"xrdebug/php": "^2.0",
"xrdebug/xrdebug": "^2.0"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
},
"files": [
"app/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true,
"bin": ["image"],
"scripts": {
"pest": "./vendor/bin/pest",
"pest-mutation": "@pest --mutate",
"pest-coverage": "@pest --coverage",
"pest-type-coverage": "@pest --type-coverage",
"style": "./vendor/bin/pint",
"static": "./vendor/bin/phpstan analyse --memory-limit=1G",
"test": [
"@pest --bail",
"@pest-coverage",
"@static"
]
}
}