-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
38 lines (38 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
{
"name": "imanghafoori/eloquent-relativity",
"description": "A way to truly decouple eloquent models.",
"keywords": ["laravel", "laravel-eloquent", "PHP", "laravel5"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-relativity",
"authors": [
{
"name": "Iman Ghafoori",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3|7.2.*|7.3.*|7.4.*|8.0.*|8.1.*|8.2.*|8.3.*",
"laravel/framework":"~5.1|6.*|7.*|8.*|9.*|10.*|11.*"
},
"autoload-dev": {
"classmap": ["tests/TestCase.php"],
"psr-4": {
"Imanghafoori\\Relativity\\Tests\\": "tests/"
}
},
"require-dev": {
"orchestra/testbench": "~3.0",
"mockery/mockery": "*"
},
"suggest": {
"imanghafoori/laravel-widgetize": "Gives you a better structure and caching opportunity for your web pages.",
"imanghafoori/laravel-decorator": "Allows you to easily apply the decorator pattern in a laravel app.",
"imanghafoori/laravel-smart-facades": "Automatic method injection when calling a method with Facades",
"imanghafoori/laravel-masterpass": "You can easily set a master password without code change."
},
"autoload": {
"psr-4": {
"Imanghafoori\\Relativity\\": "src"
}
}
}