forked from stefandoorn/sitemap-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.66 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
{
"name": "stefandoorn/sitemap-plugin",
"type": "sylius-plugin",
"description": "Sitemap Plugin for Sylius",
"license": "MIT",
"require": {
"php": "^7.4",
"sylius/sylius": "^1.6.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"phpspec/phpspec": "^7.0",
"phpstan/phpstan": "^0.12.82",
"phpstan/phpstan-strict-rules": "^0.12.9",
"phpstan/phpstan-webmozart-assert": "^0.12.12",
"phpunit/phpunit": "^9",
"sylius-labs/coding-standard": "^4.0",
"symfony/browser-kit": "^5.2",
"symfony/debug-bundle": "^5.1",
"symfony/dotenv": "^4.2",
"symfony/intl": "^4.1",
"symfony/web-profiler-bundle": "^5.0",
"symfony/web-server-bundle": "^4.1"
},
"autoload": {
"psr-4": {
"SitemapPlugin\\": "src/"
}
},
"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": "vendor/bin/phpstan analyse -c phpstan.neon -l 3 src",
"check-style": "vendor/bin/ecs check --ansi src/ tests/ spec/",
"fix-style": "vendor/bin/ecs check --ansi src/ tests/ spec/ --fix",
"phpspec": "vendor/bin/phpspec run --ansi",
"phpunit": "vendor/bin/phpunit",
"test": [
"@phpunit",
"@phpspec"
]
}
}