-
Notifications
You must be signed in to change notification settings - Fork 14
/
composer.json
55 lines (55 loc) · 1.46 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
{
"name": "cartalyst/support",
"description": "Support helpers.",
"keywords": [
"support",
"helper",
"laravel",
"cartalyst"
],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Cartalyst LLC",
"email": "[email protected]",
"homepage": "https://cartalyst.com"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"cartalyst/php-cs-fixer-config": "^2.0",
"illuminate/mail": "^11.0",
"illuminate/validation": "^11.0",
"mockery/mockery": "^1.0",
"phpunit/phpunit": "^10.0",
"symfony/translation": "^7.0"
},
"autoload": {
"psr-4": {
"Cartalyst\\Support\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cartalyst\\Support\\Tests\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"component": "package",
"branch-alias": {
"dev-master": "7.0.x-dev"
}
},
"scripts": {
"cs:check": "./vendor/bin/php-cs-fixer fix --verbose --ansi --show-progress=estimating --diff --dry-run --config .php_cs.php",
"cs:fix": "./vendor/bin/php-cs-fixer fix --verbose --ansi --show-progress=estimating --config .php_cs.php",
"test": "./vendor/bin/phpunit --verbose --colors=always"
}
}