forked from ajcastro/eager-load-pivot-relations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.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
{
"name": "audunru/eager-load-pivot-relations",
"description": "Eager load pivot relations for Laravel Eloquent's BelongsToMany relation.",
"keywords": [
"laravel",
"eloquent",
"database"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Arjon Jason Castro",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/database": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"orchestra/testbench": "^9.0",
"php-coveralls/php-coveralls": "^2.2",
"phpmd/phpmd": "^2.10",
"phpunit/phpunit": "^11.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"audunru\\EagerLoadPivotRelations\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"audunru\\EagerLoadPivotRelations\\Tests\\": "tests"
},
"classmap": [
"tests/Database/Migrations"
]
},
"scripts": {
"test": [
"php ./vendor/bin/phpunit"
],
"test-with-coverage": [
"XDEBUG_MODE=coverage php ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml"
],
"fix": [
"php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php"
],
"verify": [
"php ./vendor/bin/php-cs-fixer fix --config .php-cs-fixer.dist.php --dry-run",
"php ./vendor/bin/phpmd src ansi phpmd-ruleset.xml",
"php ./vendor/bin/phpunit"
]
}
}