-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
103 lines (103 loc) · 3.39 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
{
"name": "opencfp/opencfp",
"description": "OpenCFP is a PHP-based conference talk submission system.",
"license": "MIT",
"require": {
"php": "^7.2",
"aptoma/twig-markdown": "^3.0.0",
"cartalyst/sentinel": "^2.0.17",
"doctrine/doctrine-bundle": "^1.0",
"doctrine/orm": "^2.6.2",
"ezyang/htmlpurifier": "^4.10.0",
"guzzlehttp/guzzle": "^6.2",
"illuminate/container": "^5.5",
"illuminate/database": "^5.5",
"illuminate/events": "^5.5",
"illuminate/support": "^5.5",
"illuminate/validation": "^5.5",
"intervention/image": "~2.3",
"michelf/php-markdown": "~1.7",
"monolog/monolog": "~1.22",
"ocramius/package-versions": "^1.2.0",
"oneup/flysystem-bundle": "^3.0.2",
"pagerfanta/pagerfanta": "^2.0.1",
"phly/keep-a-changelog": "^1.0",
"sensio/framework-extra-bundle": "^5.1.3",
"symfony/config": "^4.4",
"symfony/console": "^4.4",
"symfony/css-selector": "^4.4",
"symfony/form": "^4.4",
"symfony/framework-bundle": "^4.4",
"symfony/intl": "^4.4",
"symfony/monolog-bundle": "^3.1",
"symfony/security-csrf": "^4.4",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/translation": "^4.4",
"symfony/twig-bridge": "^4.4",
"symfony/twig-bundle": "^4.4",
"symfony/validator": "^4.4",
"symfony/yaml": "^4.4",
"twig/extensions": "^1.5",
"twig/twig": "^2.4.4",
"wouterj/eloquent-bundle": "^1.1.0-rc1",
"ramsey/uuid": "^3.9",
"ramsey/uuid-doctrine": "^1.5",
"doctrine/migrations": "^2.0",
"doctrine/doctrine-migrations-bundle": "^2.0",
"doctrine/dbal": "^2.7.1"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*"
},
"conflict": {
"symfony/security-core": ">=4"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "~0.23.2",
"doctrine/doctrine-fixtures-bundle": "^3.3",
"friendsofphp/php-cs-fixer": "^2.13.0",
"fzaninotto/faker": "^1.5.0",
"infection/infection": "^0.9.3",
"laravel/homestead": "^7.4",
"league/flysystem-memory": "1.0.1",
"localheinz/composer-normalize": "^1.1.0",
"localheinz/test-util": "0.6.0",
"mikey179/vfsstream": "^1.6.5",
"mockery/mockery": "^1.0.0",
"phpunit/phpunit": "^7.4.0",
"symfony/browser-kit": "^4.4",
"symfony/debug-bundle": "^4.4",
"symfony/phpunit-bridge": "^4.4",
"symfony/web-profiler-bundle": "^4.4",
"symfony/web-server-bundle": "^4.4",
"vimeo/psalm": "^3.7"
},
"config": {
"optimize-autoloader": true
},
"autoload": {
"psr-4": {
"OpenCFP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCFP\\Test\\": "tests/"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"setup-docker": "./script/docker",
"fix": "php vendor/bin/php-cs-fixer fix --config=.php_cs.dist --using-cache=no",
"make": "make",
"migrate": "./script/migrate",
"psalm": "./script/psalm",
"setup-env": "./script/setup",
"test": "./script/test",
"update-env": "./script/update"
}
}