This repository has been archived by the owner on Mar 7, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
76 lines (76 loc) · 2.04 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
{
"name": "sebastiaanluca/laravel-auto-morph-map",
"type": "library",
"description": "Automatically alias and map the polymorphic types of Eloquent models.",
"keywords": [
"php",
"laravel",
"model",
"eloquent",
"class",
"morph",
"map"
],
"homepage": "https://github.com/sebastiaanluca/laravel-auto-morph-map",
"license": "MIT",
"authors": [
{
"name": "Sebastiaan Luca",
"email": "[email protected]",
"homepage": "https://www.sebastiaanluca.com",
"role": "Author"
}
],
"require": {
"php": "^8.0",
"laravel/framework": "^8.0"
},
"require-dev": {
"kint-php/kint": "^3.3",
"mockery/mockery": "^1.4.3",
"orchestra/testbench": "^6.0",
"phpunit/phpunit": "^9.3"
},
"autoload": {
"psr-4": {
"SebastiaanLuca\\AutoMorphMap\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SebastiaanLuca\\AutoMorphMap\\Tests\\": "tests",
"App\\": "tests/temp/app/",
"MyModule\\": "tests/temp/modules/MyModule/",
"MyPackage\\": "tests/temp/MyPackage/src/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"SebastiaanLuca\\AutoMorphMap\\AutoMorphMapServiceProvider"
]
}
},
"scripts": {
"composer-validate": "@composer validate --no-check-all --strict --ansi",
"test": "vendor/bin/phpunit",
"test-lowest": [
"composer update --prefer-lowest --prefer-dist --no-interaction --ansi",
"@test"
],
"test-stable": [
"composer update --prefer-stable --prefer-dist --no-interaction --ansi",
"@test"
],
"check": [
"@composer-validate",
"@test-lowest",
"@test-stable"
]
}
}