-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
35 lines (35 loc) · 870 Bytes
/
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
{
"name": "imanghafoori/laravel-terminator",
"description": "A minimal yet powerful package to give you opportunity to refactor your controllers.",
"keywords": ["laravel", "laravel5-package", "PHP", "laravel5"],
"license": "MIT",
"homepage": "https://github.com/imanghafoori1/laravel-terminator",
"authors": [
{
"name": "Iman Ghafoori",
"email": "Imanghafoori1@gmail.com"
}
],
"require": {
"php": ">=7.1.3|8.*",
"laravel/framework": "5.*|6.*|7.*|8.*|9.*|10.*"
},
"autoload-dev": {
"psr-4": {
"ImanGhafoori\\Terminator\\Test\\": "tests"
}
},
"require-dev": {
"orchestra/testbench": "~6.0",
"mockery/mockery": "^1.0",
"imanghafoori/laravel-makesure": "^1.0"
},
"autoload": {
"psr-4": {
"ImanGhafoori\\Terminator\\": "src"
},
"files": [
"src/helpers.php"
]
}
}