forked from pumukit/PuMuKIT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
126 lines (126 loc) · 3.75 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "pumukit/pumukit",
"license": "AGPL-3.0-or-later",
"version": "4",
"type": "project",
"description": "Media Portal",
"require": {
"php": ">=7.2.0",
"ext-curl": "*",
"ext-fileinfo": "*",
"ext-gd": "*",
"ext-json": "*",
"ext-mongodb": "*",
"ext-sysvsem": "*",
"api-platform/api-pack": "^1.2",
"doctrine/mongodb-odm": "~2",
"doctrine/mongodb-odm-bundle": "~4",
"friendsofsymfony/user-bundle": "dev-master",
"gedmo/doctrine-extensions": "dev-master",
"jms/serializer-bundle": "^3.0",
"knplabs/knp-menu-bundle": "^3.0",
"phpdocumentor/reflection-docblock": "^4.0",
"sensio/framework-extra-bundle": "^5.5",
"suncat/mobile-detect-bundle": "1.1.*",
"symfony/asset": "^4.0",
"symfony/css-selector": "^4.0",
"symfony/dotenv": "^4.0",
"symfony/event-dispatcher": "^4.0",
"symfony/expression-language": "^4.0",
"symfony/flex": "^1.6",
"symfony/http-kernel": "^4.0",
"symfony/monolog-bundle": "^3.0",
"symfony/serializer": "^4.0",
"symfony/swiftmailer-bundle": "^3.0",
"teltek/pumukit-stats-ui-bundle": "dev-master",
"twig/extensions": "~1.0",
"twig/twig": "~2.0",
"vipx/bot-detect-bundle": "^4.0",
"white-october/pagerfanta-bundle": "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"jakub-onderka/php-var-dump-check": "~0.3",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "7.*",
"symfony/browser-kit": "^4.0",
"symfony/debug-bundle": "^4.0",
"symfony/phpunit-bridge": "^4.0",
"symfony/profiler-pack": "^1.0"
},
"scripts": {
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"lints": [
"find src -type f -name '.php' -print0 | xargs -0 -n1 -P8 php -l",
"bin/console lint:yaml src",
"bin/console lint:yaml config",
"bin/console lint:twig src",
"bin/console lint:twig templates",
"bin/console lint:xliff translations/",
"vendor/bin/var-dump-check --symfony src",
"bin/travis_checks/check_var_dumps"
],
"php-cs-fixer": "vendor/bin/php-cs-fixer fix src --dry-run -v",
"phpstan": [
"vendor/bin/phpstan analyse -l 4 src"
],
"tests": "bin/phpunit",
"ci": [
"@lints",
"@php-cs-fixer",
"@phpstan",
"@tests"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"config": {
"platform": {
"ext-mongo": "1.6.16"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Pumukit\\": "src/Pumukit/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"Pumukit\\Tests\\": "tests/"
}
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^4.0"
}
},
"repositories": {
"teltekfosuserbundle": {
"type": "vcs",
"url": "https://github.com/teltek/FOSUserBundle"
},
"teltekdoctrineextensions": {
"type": "vcs",
"url": "https://github.com/teltek/DoctrineExtensions"
}
}
}