forked from leopardd/UrlShortenerBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
58 lines (58 loc) · 1.73 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
{
"name": "leopardd/url-shortener-bundle",
"description": "Symfony Bundle to generate and redirect short url working with symfony 5 and php 8",
"version": "dev-master",
"type": "symfony-bundle",
"minimum-stability": "stable",
"license": "MIT",
"keywords": [
"url",
"shortener",
"link",
"bitly",
"googl",
"symfony",
"symfony-bundle"
],
"authors": [
{
"name": "Nathachai Thongniran",
"email": "[email protected]",
"homepage": "https://github.com/jojoee",
"role": "Developer"
},
{
"name": "David Nurdin",
"email": "[email protected]",
"homepage": "https://github.com/davidnurdin",
"role": "Developer"
}
],
"require": {
"php": "~8.0",
"symfony/framework-bundle": "~5.3",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^2.4",
"hashids/hashids": "^4.1.0",
"jms/serializer-bundle": "^3.0.0"
},
"require-dev": {
"phpspec/phpspec": "^3.1",
"sensio/generator-bundle": "^3.0",
"squizlabs/php_codesniffer": "^2.8",
"symfony/phpunit-bridge": "^3.0"
},
"autoload": {
"psr-4": {
"Leopardd\\Bundle\\UrlShortenerBundle\\": ""
}
},
"scripts": {
"phpspec": "phpspec run -c phpspec.yml --stop-on-failure -v",
"phpcs": "phpcs -p -v --standard=ruleset.xml --extensions=php --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 --ignore=*/vendor/*,*/bin/*,*/spec/* ./",
"check": "composer phpspec && composer phpcs"
},
"config": {
"bin-dir": "bin"
}
}