-
Notifications
You must be signed in to change notification settings - Fork 50
/
Copy pathcomposer.json
87 lines (87 loc) · 2.65 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
{
"name": "stefandoorn/sitemap-plugin",
"type": "sylius-plugin",
"description": "Sitemap Plugin for Sylius",
"keywords": [
"sylius",
"sylius-plugin"
],
"license": "MIT",
"require": {
"php": "^8.2",
"league/flysystem-bundle": "^3.0",
"sylius/sylius": "~2.0.0"
},
"require-dev": {
"lchrusciel/api-test-case": "^5.1",
"matthiasnoback/symfony-dependency-injection-test": "^6.0",
"nyholm/psr7": "^1.8",
"phpspec/phpspec": "^7.0",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^10.0",
"sylius-labs/coding-standard": "^4.0",
"sylius/twig-hooks": "^0.5.1",
"symfony/browser-kit": "^6.4 || ^7.1",
"symfony/debug-bundle": "^6.4 || ^7.1",
"symfony/dotenv": "^6.4 || ^7.1",
"symfony/intl": "^6.4 || ^7.1",
"symfony/runtime": "^6.4 || ^7.0",
"symfony/ux-icons": "^2.22",
"symfony/web-profiler-bundle": "^6.4 || ^7.1",
"symfony/webpack-encore-bundle": "^1.15 || ^2.2",
"vimeo/psalm": "^5.0"
},
"config": {
"sort-packages": true,
"bin-dir": "bin",
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"symfony/thanks": true,
"phpstan/extension-installer": true,
"symfony/runtime": true,
"php-http/discovery": true
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"autoload": {
"psr-4": {
"SitemapPlugin\\": "src/",
"Tests\\SitemapPlugin\\": ["tests/", "tests/Application/src"]
}
},
"autoload-dev": {
"classmap": [
"tests/Application/Kernel.php"
]
},
"scripts": {
"post-install-cmd": [
"php bin/create_node_symlink.php"
],
"post-update-cmd": [
"php bin/create_node_symlink.php"
],
"post-create-project-cmd": [
"php bin/create_node_symlink.php"
],
"analyse": "bin/phpstan analyse -c phpstan.neon src/",
"check-style": "bin/ecs check --ansi src/ tests/ spec/",
"fix-style": "ecs check --ansi src/ tests/ spec/ --fix",
"phpspec": "bin/phpspec run --ansi",
"phpunit": "bin/phpunit",
"psalm": "bin/psalm",
"test": [
"@phpunit",
"@phpspec"
]
}
}