-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
61 lines (61 loc) · 1.99 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
{
"name": "thecadien/sulu-import-export-bundle",
"type": "sulu-bundle",
"description": "Import/Export Bundle for Sulu 2 CMS",
"keywords": ["sulu","suluCms","import","export"],
"homepage": "https://github.com/TheCadien/SuluImportExportBundle",
"license": "MIT",
"authors": [
{
"name": "Oliver Kossin"
}
],
"require": {
"php": "^7.3|^8.0",
"doctrine/doctrine-bundle": ">=1.0",
"sulu/sulu": "^2.0.1",
"symfony/config": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/framework-bundle": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-kernel": "^4.3 || ^5.0.7 || ^6.0 || ^7.0"
},
"require-dev": {
"coduo/php-matcher": "^4.0",
"handcraftedinthealps/code-coverage-checker": "^0.2.1",
"handcraftedinthealps/zendsearch": "^2.0",
"jackalope/jackalope-doctrine-dbal": "^1.3.4",
"jangregor/phpstan-prophecy": "^0.8",
"phpstan/phpstan": "^0.12",
"phpstan/phpstan-doctrine": "^0.12",
"phpstan/phpstan-phpunit": "^0.12",
"phpstan/phpstan-symfony": "^0.12",
"phpunit/phpunit": "^8.0",
"symfony/browser-kit": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/console": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/dotenv": "^4.3 || ^5.0 || ^6.0 || ^7.0",
"symfony/error-handler": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.1",
"thecodingmachine/phpstan-strict-rules": "^0.12"
},
"scripts": {
"phpstan": [
"@php vendor/bin/phpstan analyse"
],
"phpunit": "@php vendor/bin/phpunit",
"bootstrap-test-environment": [
"@php Tests/Application/bin/console doctrine:database:create --if-not-exists",
"@php Tests/Application/bin/console doctrine:schema:update --force"
]
},
"autoload": {
"psr-4": {
"TheCadien\\Bundle\\SuluImportExportBundle\\": ""
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}