-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.16 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.16 KB
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
{
"name": "sdkconsultoria/core",
"type": "library",
"description": "Funciones basicas y auxiliares, para generar una página web rápidamente",
"keywords": [
"laravel",
"package",
"base"
],
"license": "MIT",
"authors": [{
"name": "Camilo Antonio Rodríguez Cruz",
"email": "camilo@sdkconsultoria.com",
"homepage": "https://sdkconsultoria.com",
"role": "Developer"
}],
"require": {
"php": "^8.1",
"intervention/image": "^2.7",
"spatie/laravel-permission": "^5.5",
"laravel/sanctum": "^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^7.5",
"fakerphp/faker": "^1.19",
"laravel/pint": "^0.2.1"
},
"autoload": {
"files": [],
"psr-4": {
"Sdkconsultoria\\Core\\": "src/",
"Sdkconsultoria\\Core\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Sdkconsultoria\\Core\\ServiceProvider",
"Sdkconsultoria\\Core\\Providers\\AuthServiceProvider"
]
}
}
}