forked from spatie/laravel-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
78 lines (78 loc) · 2.44 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
{
"name" : "spatie/laravel-data",
"description" : "Create unified resources and data transfer objects",
"keywords" : [
"spatie",
"laravel",
"laravel-data"
],
"homepage" : "https://github.com/spatie/laravel-data",
"license" : "MIT",
"authors" : [
{
"name" : "Ruben Van Assche",
"email" : "[email protected]",
"role" : "Developer"
}
],
"require" : {
"php" : "^8.1",
"illuminate/contracts" : "^9.30|^10.0",
"phpdocumentor/type-resolver" : "^1.5",
"spatie/laravel-package-tools" : "^1.9.0"
},
"require-dev" : {
"fakerphp/faker" : "^1.14",
"friendsofphp/php-cs-fixer" : "^3.0",
"inertiajs/inertia-laravel" : "^0.6.3",
"nesbot/carbon" : "^2.63",
"nette/php-generator" : "^3.5",
"nunomaduro/larastan" : "^2.0",
"orchestra/testbench" : "^7.6|^8.0",
"pestphp/pest" : "^1.22",
"pestphp/pest-plugin-laravel" : "^1.3",
"phpbench/phpbench" : "^1.2",
"phpstan/extension-installer" : "^1.1",
"phpunit/phpunit" : "^9.3",
"spatie/invade" : "^1.0",
"spatie/laravel-typescript-transformer" : "^2.1.6",
"spatie/pest-plugin-snapshots" : "^1.1",
"spatie/phpunit-snapshot-assertions" : "^4.2",
"spatie/test-time" : "^1.2"
},
"autoload" : {
"psr-4" : {
"Spatie\\LaravelData\\" : "src",
"Spatie\\LaravelData\\Database\\Factories\\" : "database/factories"
}
},
"autoload-dev" : {
"psr-4" : {
"Spatie\\LaravelData\\Tests\\" : "tests"
}
},
"scripts" : {
"analyse" : "vendor/bin/phpstan analyse",
"test" : "./vendor/bin/pest --no-coverage",
"test-coverage" : "vendor/bin/pest --coverage-html coverage",
"format" : "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"benchmark" : "vendor/bin/phpbench run --report=default",
"benchmark-profiled" : "vendor/bin/phpbench xdebug:profile"
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"phpstan/extension-installer" : true,
"pestphp/pest-plugin" : true
}
},
"extra" : {
"laravel" : {
"providers" : [
"Spatie\\LaravelData\\LaravelDataServiceProvider"
]
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}