-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
80 lines (80 loc) · 2.6 KB
/
Copy pathcomposer.json
File metadata and controls
80 lines (80 loc) · 2.6 KB
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
{
"name": "setono/client-bundle",
"description": "Integrate the client library into your Symfony application",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "Joachim Løvgaard",
"email": "joachim@loevgaard.dk"
}
],
"require": {
"php": ">=8.1",
"doctrine/dbal": "^2.13 || ^3.0 || ^4.0",
"doctrine/doctrine-bundle": "^2.7",
"doctrine/orm": "^2.0 || ^3.0",
"doctrine/persistence": "^2.5 || ^3.0",
"psr/event-dispatcher": "^1.0",
"setono/client": "^1.1.1",
"setono/doctrine-orm-trait": "^1.1",
"symfony/config": "^6.4 || ^7.0",
"symfony/dependency-injection": "^6.4 || ^7.0",
"symfony/event-dispatcher": "^6.4 || ^7.0",
"symfony/http-foundation": "^6.4 || ^7.0",
"symfony/http-kernel": "^6.4 || ^7.0",
"symfony/uid": "^6.4 || ^7.0",
"symfony/var-exporter": "^6.4 || ^7.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.50",
"infection/infection": "^0.27 || ^0.28",
"jangregor/phpstan-prophecy": "^2.3",
"matthiasnoback/symfony-dependency-injection-test": "^4.3.1 || ^5.1",
"phpspec/prophecy": "^1.20",
"phpspec/prophecy-phpunit": "^2.5",
"phpstan/extension-installer": "^1.4.3",
"phpstan/phpstan": "^2.1.46",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpstan/phpstan-symfony": "^2.0",
"phpstan/phpstan-webmozart-assert": "^2.0",
"phpunit/phpunit": "^10.5",
"rector/rector": "^2.4.1",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"sylius-labs/coding-standard": "^4.5"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"Setono\\ClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Setono\\ClientBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false,
"ergebnis/composer-normalize": true,
"infection/extension-installer": true,
"phpstan/extension-installer": true
},
"policy": {
"advisories": {
"block": false
}
},
"sort-packages": true
},
"scripts": {
"analyse": "phpstan analyse",
"check-style": "ecs check",
"fix-style": "ecs check --fix",
"infection": "infection",
"phpunit": "phpunit"
}
}