forked from opencfp/opencfp
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
96 lines (96 loc) · 3.09 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
{
"name": "opencfp/opencfp",
"description": "OpenCFP is a PHP-based conference talk submission system.",
"license": "MIT",
"require": {
"php": "^7.1",
"aptoma/twig-markdown": "^3.0.0",
"cartalyst/sentinel": "^2.0.17",
"ezyang/htmlpurifier": "dev-master",
"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",
"oneup/flysystem-bundle": "~3.0.2",
"pagerfanta/pagerfanta": "1.0.*@dev",
"phly/keep-a-changelog": "^1.0",
"robmorgan/phinx": "~0.9.2",
"sensio/framework-extra-bundle": "^5.1.3",
"symfony/config": "^3.4.15",
"symfony/console": "^4.0",
"symfony/css-selector": "^3.4.15",
"symfony/form": "^3.4.15",
"symfony/framework-bundle": "^3.4.15",
"symfony/intl": "^3.4.15",
"symfony/monolog-bundle": "^3.1",
"symfony/security-csrf": "^3.4.15",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/translation": "^3.4.15",
"symfony/twig-bridge": "^3.4.15",
"symfony/twig-bundle": "^3.4.15",
"symfony/validator": "^3.4.15",
"symfony/yaml": "^3.4.15",
"twig/extensions": "^1.5",
"twig/twig": "^2.4.4",
"wouterj/eloquent-bundle": "^1.0"
},
"replace": {
"paragonie/random_compat": "*",
"symfony/polyfill-php56": "*",
"symfony/polyfill-php70": "*"
},
"conflict": {
"symfony/security-core": ">=4"
},
"require-dev": {
"codedungeon/phpunit-result-printer": "~0.23.2",
"friendsofphp/php-cs-fixer": "^2.13.0",
"fzaninotto/faker": "^1.5.0",
"infection/infection": "^0.7.0",
"laravel/homestead": "^7.4",
"league/flysystem-memory": "1.0.1",
"localheinz/composer-normalize": "~0.9.0",
"localheinz/test-util": "0.6.0",
"mikey179/vfsStream": "^1.6.5",
"mockery/mockery": "^1.0.0",
"phpstan/phpstan": "~0.9.2",
"phpunit/phpunit": "^7.4.0",
"symfony/browser-kit": "^3.4.15",
"symfony/debug-bundle": "^3.4.15",
"symfony/phpunit-bridge": "^3.4.15",
"symfony/web-profiler-bundle": "^3.4.15",
"symfony/web-server-bundle": "^3.4.15"
},
"config": {
"platform": {
"php": "7.1.3"
},
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"OpenCFP\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"OpenCFP\\Test\\": "tests/"
},
"files": [
"tests/helpers.php"
]
},
"scripts": {
"fix": "php vendor/bin/php-cs-fixer fix --config=.php_cs.dist --using-cache=no",
"make": "make",
"setup-env": "./script/setup",
"test": "./script/test",
"update-env": "./script/update"
}
}