-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.12 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
{
"name": "opheus2/laravel-makeclass",
"description": "A laravel package that makes the creating of php classes faster",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ominiabohs David Orpheus",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Orpheus\\LaravelMakeClass\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Orpheus\\LaravelMakeClass\\Tests\\": "tests"
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"fix-style": "phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests"
},
"extra": {
"laravel": {
"providers": [
"Orpheus\\LaravelMakeClass\\LaravelMakeClassServiceProvider"
],
"aliases": {
"Calculator": "Orpheus\\LaravelMakeClass\\Facades\\Calculator"
}
}
},
"require-dev": {
"orchestra/testbench": "6.0",
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "^3.0"
}
}