This repository has been archived by the owner on May 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.95 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "peternijssen/packy",
"license": "MIT",
"description": "Packy is an open source tool to validate if your dependencies are up 2 date. Packy is based on the Symfony framework.",
"keywords": ["dependencies", "composer", "yarn", "npm", "pip"],
"type": "project",
"authors": [
{
"name": "Peter Nijssen",
"email": "[email protected]",
"homepage": "https://www.peternijssen.nl"
}
],
"autoload": {
"psr-4": {
"": "src"
},
"classmap": [
"app/AppKernel.php",
"app/AppCache.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
},
"files": [
"vendor/symfony/symfony/src/Symfony/Component/VarDumper/Resources/functions/dump.php"
]
},
"require": {
"php": ">=7.0",
"symfony/symfony": "3.3.*",
"symfony/swiftmailer-bundle": "^2.3.10",
"symfony/monolog-bundle": "^3.1.0",
"doctrine/orm": "^2.5",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-cache-bundle": "^1.2",
"doctrine/doctrine-migrations-bundle": "1.1.*",
"sensio/distribution-bundle": "^5.0.19",
"sensio/framework-extra-bundle": "^3.0.2",
"incenteev/composer-parameter-handler": "~2.0",
"stof/doctrine-extensions-bundle": "dev-master",
"guzzlehttp/guzzle": "^6.0",
"knplabs/knp-menu-bundle": "^2.1",
"friendsofsymfony/user-bundle": "^2.0",
"ornicar/gravatar-bundle": "^1.1",
"knplabs/github-api": "^1.7",
"m4tthumphrey/php-gitlab-api": "^8.0",
"gentle/bitbucket-api": "^1.0",
"twig/twig": "^2.0",
"twig/extensions": "1.*",
"composer/semver": "^1.4"
},
"require-dev": {
"sensio/generator-bundle": "^3.0",
"symfony/phpunit-bridge": "^3.0",
"phpro/grumphp": "^0.8",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "~3.0",
"friendsofphp/php-cs-fixer": "^2.2",
"phpstan/phpstan": "^0.7",
"phpstan/phpstan-doctrine": "^0.7",
"squizlabs/php_codesniffer": "^2.8",
"escapestudios/symfony2-coding-standard": "^2.10"
},
"scripts": {
"symfony-scripts": [
"Incenteev\\ParameterHandler\\ScriptHandler::buildParameters",
"Sensio\\Bundle\\DistributionBundle\\Composer\\ScriptHandler::clearCache"
],
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts"
]
},
"minimum-stability": "stable",
"extra": {
"symfony-app-dir": "app",
"symfony-bin-dir": "bin",
"symfony-var-dir": "var",
"symfony-web-dir": "web",
"symfony-tests-dir": "tests",
"symfony-assets-install": "relative",
"incenteev-parameters": {
"file": "app/config/parameters.yml"
}
}
}