generated from Syrian-Open-Source/laravel-package-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
46 lines (46 loc) · 1.28 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
{
"name": "syrian-open-source/laravel-query-helper",
"description": "Laravel package making you able to perform several processes instead of executing them through one process",
"license": "MIT",
"keywords": [
"laravel",
"syrian open source",
"laravel query helper",
"laravel-query-helper"
],
"authors": [
{
"name": "Karam Mustafa",
"email": "karam2mustafa@gmail.com",
"homepage": "https://github.com/karam-mustafa",
"role": "Developer"
}
],
"require": {
"phpunit/phpunit": "^9.5",
"friendsofphp/php-cs-fixer": "^3.0"
},
"autoload" : {
"psr-4": {
"SOS\\QueryHelper\\" : "src",
"SOS\\QueryHelper\\Tests\\": "src/tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"extra" : {
"laravel" : {
"providers" : [
"SOS\\QueryHelper\\Providers\\QueryHelperServiceProviders"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"orchestra/testbench": "^6.23"
}
}