-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
58 lines (58 loc) · 1.83 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
{
"name": "imanghafoori/laravel-decorator",
"description": "A package to easily decorate your function calls.",
"keywords": [
"laravel",
"decorator pattern",
"design patterns",
"php decorator pattern"
],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-decorator",
"authors": [
{
"name": "Iman Ghafoori",
"email": "imanghafoori1@gmail.com"
}
],
"require": {
"php": "7.4.*|8.0.*|8.1.*|8.2.*|8.3.*|8.4.*",
"illuminate/support": "~5.5|6.*|7.*|8.*|9.*|10.*|^11.0|^12.0",
"illuminate/container": "~5.5|6.*|7.*|8.*|9.*|10.*|^11.0|^12.0"
},
"require-dev": {
"orchestra/testbench": "~6.0|^9.0",
"squizlabs/php_codesniffer": "3.*"
},
"autoload": {
"psr-4": {
"Imanghafoori\\Decorator\\": "src"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"test": "phpunit",
"phpcs": "phpcs src --standard=PSR2",
"phpcbf": "phpcbf src --standard=PSR2"
},
"suggest": {
"imanghafoori/laravel-heyman": "It allows to write expressive code to authorize, validate and authenticate.",
"imanghafoori/laravel-widgetize": "Gives you a better structure and caching opportunity for your laravel apps.",
"imanghafoori/laravel-masterpass": "You can set a master password for your accounts.",
"imanghafoori/laravel-anypass": " Allows you login with any password in local environment."
},
"extra": {
"laravel": {
"providers": [
"Imanghafoori\\Decorator\\DecoratorServiceProvider"
],
"aliases": {
"Decorator": "Imanghafoori\\Decorator\\Facade"
}
}
}
}