forked from stefandoorn/sitemap-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
72 lines (72 loc) · 2.42 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
{
"name": "stefandoorn/sitemap-plugin",
"type": "sylius-plugin",
"description": "Sitemap Plugin for Sylius",
"license": "MIT",
"require": {
"php": "^7.1",
"sylius/sylius": "^1.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/phpspec": "^5.0",
"phpstan/phpstan-doctrine": "^0.11",
"phpstan/phpstan-shim": "^0.11",
"phpstan/phpstan-strict-rules": "^0.11",
"phpstan/phpstan-symfony": "^0.11",
"phpstan/phpstan-webmozart-assert": "^0.11",
"phpunit/phpunit": "^8.0",
"roave/security-advisories": "dev-master",
"sensiolabs/security-checker": "^6.0",
"sylius-labs/coding-standard": "^3.0",
"symfony/debug-bundle": "^3.4|^4.1",
"symfony/dotenv": "^4.2",
"symfony/intl": "^3.4|^4.1",
"symfony/web-profiler-bundle": "^3.4|^4.1",
"symfony/web-server-bundle": "^3.4|^4.1"
},
"autoload": {
"psr-4": {
"SitemapPlugin\\": "src/"
}
},
"conflict": {
"symfony/symfony": "4.1.8",
"symfony/browser-kit": "4.1.8",
"symfony/dependency-injection": "4.1.8",
"symfony/dom-crawler": "4.1.8",
"symfony/routing": "4.1.8"
},
"prefer-stable": true,
"config": {
"sort-packages": true
},
"autoload-dev": {
"classmap": ["tests/Application/Kernel.php"],
"psr-4": {
"Tests\\SitemapPlugin\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"scripts": {
"analyse": [
"@ensure-test-container-exists",
"./vendor/bin/phpstan analyse -c phpstan.neon -l max src"
],
"check-style": "vendor/bin/ecs check --ansi src/ tests/ spec/",
"ensure-test-container-exists": "[[ -f tests/Application/var/cache/test/ApplicationTests_SitemapPlugin_Application_KernelTestDebugContainer.xml ]] || (cd tests/Application && php -d memory_limit=-1 bin/console cache:clear --env=test)",
"fix-style": "vendor/bin/ecs check --ansi src/ tests/ spec/ --fix",
"phpspec": "vendor/bin/phpspec run --ansi",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpunit",
"@phpspec"
],
"security": "vendor/bin/security-checker security:check"
}
}