-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
50 lines (50 loc) · 1.45 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
{
"name": "leopardd/url-shortener-bundle",
"description": "Symfony Bundle to generate and redirect short url",
"type": "symfony-bundle",
"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"
}
],
"require": {
"php": "~5.6|~7.0",
"symfony/framework-bundle": "~2.6|~3.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"hashids/hashids": "^2.0",
"jms/serializer-bundle": "^1.3"
},
"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"
}
}