-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
58 lines (58 loc) · 2.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
{
"name": "vanio/vanio-user-bundle",
"description": "Symfony2 Bundle integrating FOSUserBundle and HWIOAuthBundle with some additional features and sane defaults",
"keywords": ["user", "bundle", "oauth"],
"type": "symfony-bundle",
"homepage": "https://github.com/vaniocz/vanio-user-bundle",
"license": "MIT",
"authors": [
{"name": "Marek Štípek", "email": "[email protected]"}
],
"require": {
"php": "^7.1",
"friendsofsymfony/user-bundle": "^2.1.2",
"vanio/stdlib": "~0.1",
"vanio/vanio-web-bundle": "^0.5"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/console": "^3.0",
"symfony/validator": "^3.0",
"symfony/asset": "^3.0",
"symfony/framework-bundle": "^3.0",
"symfony/swiftmailer-bundle": "^2.3.9",
"doctrine/doctrine-bundle": "^1.6.4",
"hwi/oauth-bundle": "^0.6.2",
"php-http/mock-client": "^1.1",
"vanio/coding-standards": "^0.3"
},
"suggest": {
"hwi/oauth-bundle": "For social authentication."
},
"autoload": {
"psr-4": {"Vanio\\UserBundle\\": ""},
"exclude-from-classmap": ["/Tests/", "**/Tests/"]
},
"autoload-dev": {
"psr-4": {"Vanio\\UserBundle\\Tests\\": "Tests/"},
"classmap": ["AppKernel.php"]
},
"scripts": {
"test": "\"vendor/bin/phpunit\"",
"lint": "\"vendor/bin/phpcs\" -s --standard=vendor/vanio/coding-standards/ruleset.xml .",
"fix": "\"vendor/bin/phpcbf\" --standard=vendor/vanio/coding-standards/ruleset.xml .",
"dump-translations": "php console translation:update --dump-messages --output-format=xlf cs && php console translation:update --dump-messages --output-format=xlf en",
"update-translations": "php console translation:update --force --output-format=xlf cs && php console translation:update --force --output-format=xlf en"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "0.5.x-dev",
"dev-sf3": "0.5.x-dev"
}
}
}