forked from spatie/laravel-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
79 lines (79 loc) · 2.43 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
{
"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" : "ruben@spatie.be",
"role" : "Developer"
}
],
"require" : {
"php": "^8.1",
"illuminate/contracts": "^10.0|^11.0",
"phpdocumentor/reflection": "^6.0",
"spatie/laravel-package-tools": "^1.9.0",
"spatie/php-structure-discoverer": "^2.0"
},
"require-dev" : {
"fakerphp/faker": "^1.14",
"friendsofphp/php-cs-fixer": "^3.0",
"inertiajs/inertia-laravel": "^1.2",
"livewire/livewire": "^3.0",
"mockery/mockery": "^1.6",
"nesbot/carbon": "^2.63",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.0|^9.0",
"pestphp/pest": "^2.31",
"pestphp/pest-plugin-laravel": "^2.0",
"pestphp/pest-plugin-livewire": "^2.1",
"phpbench/phpbench": "^1.2",
"phpstan/extension-installer": "^1.1",
"phpunit/phpunit": "^10.0",
"spatie/invade": "^1.0",
"spatie/laravel-typescript-transformer": "^2.5",
"spatie/pest-plugin-snapshots": "^2.1",
"spatie/test-time": "^1.2"
},
"autoload" : {
"psr-4" : {
"Spatie\\LaravelData\\" : "src/"
}
},
"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 --filter=DataBench",
"profile" : "vendor/bin/phpbench xdebug:profile --filter=DataProfileBench"
},
"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
}