-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.13 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
{
"name": "svanthuijl/laravel-routable-models",
"description": "This packages allows you to create eloquent models which have their own routes.",
"license": "MIT",
"authors": [
{
"name": "Simon van Thuijl",
"email": "[email protected]",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Svanthuijl\\Routable\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Svanthuijl\\Routable\\Tests\\": "tests",
"Svanthuijl\\Routable\\TestSupport\\Database\\Factories\\": "tests/TestSupport/database/factories"
}
},
"scripts": {
"post-autoload-dump": [
"@php vendor/bin/testbench package:discover --ansi"
],
"test": "php vendor/bin/testbench package:test"
},
"require": {
"php": "^8.0"
},
"require-dev": {
"phpunit/phpunit": "^10.2@dev",
"orchestra/testbench": "dev-develop",
"nunomaduro/collision": "^7.4",
"spatie/laravel-translatable": "dev-main"
}
}