-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.43 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
{
"name": "jkabat/sendy-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that integrates SendyPHP library from Jacob Bennett: https://github.com/JacobBennett/SendyPHP.",
"keywords": ["sendy", "sendy.co", "newsletter", "integration"],
"license": "MIT",
"support": {
"issues": "https://github.com/jkabat/sendy-bundle/issues"
},
"authors": [
{
"name": "Juraj Kabát",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"jacobbennett/sendyphp": "~2.0",
"symfony/framework-bundle": "^4.4|^5.4|^6.0",
"symfony/yaml": "^4.4|^5.4|^6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-strict-rules": "^1.1",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/phpunit-bridge": "^5.4|^6.0",
"symplify/easy-coding-standard": "^10.1"
},
"scripts": {
"cs": "vendor/bin/ecs check",
"cs-fix": "vendor/bin/ecs check --fix",
"stan": "vendor/bin/phpstan analyse --ansi --memory-limit=1G",
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": { "Sendy\\SendyBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"config": {
"allow-plugins": true,
"preferred-install": "dist",
"sort-packages": true
}
}