-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
51 lines (51 loc) · 1.35 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
{
"name": "stayallive/laravel-inverse-relations",
"type": "library",
"description": "HasMany, HasOne and MorphMany Eloquent relations with inverse hydration.",
"keywords": [
"laravel",
"eloquent",
"relations"
],
"homepage": "https://github.com/stayallive/laravel-inverse-relations",
"license": "MIT",
"authors": [
{
"name": "Alex Bouma",
"email": "[email protected]"
}
],
"require": {
"laravel/framework": "^8|^9|^10|^11"
},
"autoload": {
"psr-4": {
"Stayallive\\Laravel\\Eloquent\\Relations\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.16",
"orchestra/testbench": "^6|^7|^8|^9",
"pestphp/pest": "^1.23|^2.4",
"phpunit/phpunit": "^9|^10|^11"
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest --stop-on-failure",
"test:ci": "vendor/bin/pest",
"phpcs": "vendor/bin/php-cs-fixer fix",
"phpcs:ci": "vendor/bin/php-cs-fixer fix --dry-run --diff"
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}