-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (56 loc) · 1.14 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
{
"name": "daom89/ejemplotardelista",
"description": "Proyecto de ejemplo de PHP",
"minimum-stability": "stable",
"license": "MIT",
"keywords": ["lista", "php", "poo", "ejemplo"],
"homepage": "https://google.com",
"time": "2022-02-17",
"authors": [
{
"name": "Diego Ojeda",
"email": "[email protected]",
"homepage": "http://www.sena.edu.co",
"role": "Developer"
}
],
"require":{
"php": ">=8.1",
"ext-json": "*",
"ext-pdo": "*",
"ext-xdebug": "*",
"ext-intl": "*",
"almasaeed2010/adminlte": "^3.0",
"vlucas/phpdotenv": "^3.6",
"nesbot/carbon": "^2.37",
"verot/class.upload.php": "^2.0",
"monolog/monolog": "^2.1",
"tgalopin/html-sanitizer": "^1.4",
"friendsofphp/php-cs-fixer" : "^v2.16.7"
},
"require-dev": {
"phpunit/phpunit": "^9"
},
"autoload": {
"psr-4": {
"App\\" : "app/",
"App\\Traits\\" : "app/Traits/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"config": {
"bin-dir": "bin"
},
"extra": {
}
}