-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.55 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
59
60
61
62
{
"name": "niiknow/laratt",
"type": "library",
"description": "A Laravel package to support table multitenancy",
"keywords": [
"niiknow",
"database",
"laratt"
],
"homepage": "https://github.com/niiknow/laratt",
"license": "MIT",
"authors": [
{
"name": "Tom Noogen",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"laravel/framework": ">=8.0",
"league/csv": "^9.0",
"maatwebsite/excel": "^3.0",
"phpoffice/phpspreadsheet": "^1.29.0",
"yajra/laravel-datatables-oracle": "^10.0"
},
"require-dev": {
"fakerphp/faker": "^1.23",
"friendsofphp/php-cs-fixer": "^3.38",
"mockery/mockery": "^1.6",
"orchestra/testbench": "^7.4.0",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Niiknow\\Laratt\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Niiknow\\Laratt\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Niiknow\\Laratt\\LarattServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"phpcs": "phpcs -s --report=full --report=source",
"phpcs:fix": "phpcbf -w",
"format": "./vendor/bin/php-cs-fixer fix --using-cache=no"
},
"minimum-stability": "dev",
"prefer-stable": true
}