-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.08 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
65
66
67
68
69
{
"name": "Acortador de URL",
"description": "Starting point if you want to bootstrap a project in PHP following best practices.",
"type": "project",
"keywords": [
"Url",
"Url Shortened",
"Bilty",
"Desarrollo Eficiente",
"DDD",
"Arquitectura Hexagonal"
],
"homepage": "https://github.com/LaSalleURL/mpwat20-url_shortener-judithvilela",
"time": "2020-06-05",
"license": "MIT",
"authors": [
{
"name": "Judith Vilela",
"email": "judithzenaida.vilela@students.salle.url.edu",
"role": "Developer"
}
],
"require": {
"php": ">=7.2",
"symfony/console": "^5.1",
"symfony/dotenv": "^5.1",
"symfony/framework-bundle": "^5.1",
"symfony/yaml": "^5.1",
"ext-json": "^1.7",
"ext-curl": "^7.3",
"ramsey/uuid": "^4.0",
"ext-PDO": "^7.3",
"symfony/event-dispatcher": "^5.1",
"symfony/http-foundation": "^5.1"
},
"require-dev": {
"jakub-onderka/php-parallel-lint": "^1.0",
"jakub-onderka/php-console-highlighter": "^0.4",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^7.2",
"symfony/var-dumper": "^4.4"
},
"autoload": {
"psr-4": {
"LaSalle\\UrlShortener\\JudithVilela\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LaSalle\\UrlShortenerTest\\": "tests/"
}
},
"minimum-stability": "stable",
"config": {
"optimize-autoloader": true
},
"prefer-stable": true,
"scripts": {
"lint": "parallel-lint . --exclude vendor",
"style": "phpcs -p --standard=PSR2 src tests",
"fix-style": "phpcbf -p --standard=PSR2 src tests",
"phpunit": "phpunit --configuration phpunit.xml",
"test": [
"parallel-lint . --exclude vendor",
"phpcs -p --standard=PSR2 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 src tests",
"phpunit --configuration phpunit.xml"
]
}
}