-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.41 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
{
"name": "realsoftgt/real-kardex",
"description": "Complemento para el procesamiento de stock, notifiaciones y kardes de productos de tipo bien, en modelos Eloquent usados en Laravel o FilamentPHP.",
"keywords": [
"RealKardex",
"laravel",
"kardex",
"stock",
"inventory",
"realsoft",
"real-kardex"
],
"homepage": "https://github.com/realsoftgt/real-kardex",
"type": "library",
"require": {
"php": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^7.17",
"phpunit/phpunit": "^9.5"
},
"license": "MIT",
"autoload": {
"psr-4": {
"RealSoft\\RealKardex\\": "src/"
}
},
"authors": [
{
"name": "Henry L. Díaz Gutiérrez",
"email": "hdiaz@realsoft.dev",
"homepage": "https://realsoft.dev",
"role": "Developer"
},
{
"name": "Real Software Solutions",
"email": "contact@realsoft.dev",
"homepage": "https://realsoft.dev"
}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"RealSoft\\RealKardex\\KardexServiceProvider"
],
"aliases": {
"Alias": "RealSoft\\RealKardex\\KardexFacade"
}
}
}
}