This repository has been archived by the owner on Oct 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
64 lines (64 loc) · 1.65 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
63
64
{
"name": "combindma/jumia",
"description": "This is my package Jumia",
"keywords": [
"combindma",
"laravel",
"jumia"
],
"homepage": "https://github.com/combindma/jumia",
"license": "MIT",
"authors": [
{
"name": "Combind",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"combindma/dashui": "^1.0",
"illuminate/contracts": "^8.0",
"maatwebsite/excel": "^3.1",
"spatie/array-to-xml": "^2.16",
"spatie/laravel-package-tools": "^1.4.3"
},
"require-dev": {
"brianium/paratest": "^6.2",
"nunomaduro/collision": "^5.3",
"orchestra/testbench": "^6.15",
"phpunit/phpunit": "^9.3",
"vimeo/psalm": "^4.4"
},
"autoload": {
"psr-4": {
"Combindma\\Jumia\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Combindma\\Jumia\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"test": "./vendor/bin/testbench package:test --parallel --no-coverage",
"test-filter": "vendor/bin/phpunit --no-coverage --filter",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Combindma\\Jumia\\JumiaServiceProvider"
],
"aliases": {
"Jumia": "Combindma\\Jumia\\Facades\\Jumia"
}
}
},
"minimum-stability": "dev",
"prefer-stable": true
}