This repository has been archived by the owner on Mar 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
98 lines (98 loc) · 3.24 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
{
"name": "monofony/symfony_starter",
"description": "Starter project for Symfony projects",
"license": "MIT",
"type": "project",
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"require": {
"php": "^7.2",
"api-platform/api-pack": "^1.2",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-fixtures-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^2.0",
"doctrine/orm": "^2.4.8",
"eightpoints/guzzle-bundle": "^7.3",
"friendsofsymfony/oauth-server-bundle": "^1.6",
"fzaninotto/faker": "^1.8",
"guzzlehttp/guzzle": "^6.2",
"knplabs/doctrine-behaviors": "~1.1",
"liip/imagine-bundle": "^2.2",
"sensio/framework-extra-bundle": "^5.1",
"sensiolabs/security-checker": "^5.0",
"sonata-project/block-bundle": "^3.3",
"sylius/customer-bundle": "^1.6",
"sylius/fixtures-bundle": "^1.4",
"sylius/grid-bundle": "^1.6",
"sylius/mailer-bundle": "^1.4",
"sylius/resource-bundle": "^1.6",
"sylius/ui-bundle": "^1.6",
"sylius/user-bundle": "^1.6",
"symfony/dotenv": "4.4.*",
"symfony/flex": "^1.2",
"symfony/monolog-bundle": "^3.3",
"symfony/proxy-manager-bridge": "4.4.*",
"symfony/swiftmailer-bundle": "^3.0",
"symfony/twig-bundle": "4.4.*",
"symfony/webpack-encore-bundle": "^1.6",
"twig/extensions": "^1.5",
"twig/twig": "^2.7",
"vich/uploader-bundle": "^1.8"
},
"require-dev": {
"behat/behat": "^3.2",
"behat/mink": "^1.7@dev",
"behat/mink-browserkit-driver": "^1.3",
"behat/mink-extension": "^2.2",
"behat/mink-selenium2-driver": "^1.3",
"friends-of-behat/page-object-extension": "^0.3",
"friends-of-behat/symfony-extension": "^2.0",
"friends-of-behat/variadic-extension": "^1.1",
"friends-of-phpspec/phpspec-code-coverage": "^4.3",
"friendsofphp/php-cs-fixer": "^2.13",
"infection/infection": "^0.13",
"lakion/mink-debug-extension": "^1.2",
"lchrusciel/api-test-case": "^3.1",
"phpspec/phpspec": "^5.0",
"phpstan/phpstan": "^0.11",
"phpstan/phpstan-doctrine": "^0.11",
"phpstan/phpstan-nette": "^0.11",
"phpstan/phpstan-symfony": "^0.11",
"phpstan/phpstan-webmozart-assert": "^0.11",
"proget-hq/phpstan-phpspec": "^0.2.0",
"psr/event-dispatcher": "^1.0",
"se/selenium-server-standalone": " ^2.52",
"symfony/debug-bundle": "4.4.*",
"symfony/web-profiler-bundle": "4.4.*",
"vimeo/psalm": "^3.4"
},
"conflict": {
"symfony/symfony": "*"
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"security-checker security:check": "script"
}
},
"config": {
"sort-packages": true
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "4.4.*"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}