-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
44 lines (44 loc) · 1.03 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
{
"name": "sylius-labs/polyfill-symfony-framework-bundle",
"type": "symfony-bundle",
"description": "Symfony FrameworkBundle Polyfill",
"license": "MIT",
"authors": [
{
"name": "Kamil Kokot",
"email": "[email protected]",
"homepage": "https://kamilkokot.com"
}
],
"require": {
"php": "^8.0",
"symfony/framework-bundle": "^5.4 || ^6.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.23"
},
"autoload": {
"psr-4": {
"SyliusLabs\\Polyfill\\Symfony\\FrameworkBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\SyliusLabs\\Polyfill\\Symfony\\FrameworkBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
}
},
"scripts": {
"analyse": [
"vendor/bin/psalm"
],
"test": [
"vendor/bin/phpunit --colors=always"
]
}
}