-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.82 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
{
"name": "bentools/safe-sync-transport",
"type": "library",
"description": "Symfony Messenger safe synchronous transport.",
"license": "MIT",
"require": {
"php": ">=8.0",
"symfony/messenger": "^5.4|^6.0"
},
"require-dev": {
"ext-sqlite3": "*",
"doctrine/doctrine-bundle": "^2.8",
"doctrine/doctrine-migrations-bundle": "^3.2",
"doctrine/orm": "^2.14",
"pestphp/pest": "^1.22",
"phpstan/phpstan": "^1.9",
"squizlabs/php_codesniffer": "^3.7",
"symfony/console": "^5.4|^6.0",
"symfony/doctrine-messenger": "^5.4|^6.0",
"symfony/dotenv": "^5.4|^6.0",
"symfony/framework-bundle": "^5.4|^6.0",
"symfony/runtime": "^5.4|^6.0",
"symfony/yaml": "^5.4|^6.0"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"symfony/runtime": true,
"pestphp/pest-plugin": true
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "tests/app/",
"BenTools\\SafeSyncTransport\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"BenTools\\SafeSyncTransport\\Tests\\": "tests/cases/",
"Pest\\Custom\\": "tests/pest/"
},
"files": [
"tests/pest/Logger/functions.php",
"tests/pest/Symfony/functions.php"
]
},
"scripts": {
"lint": "vendor/bin/phpcbf",
"test:lint": "vendor/bin/phpcs",
"test:types": "vendor/bin/phpstan",
"test:feature": "vendor/bin/pest",
"test": [
"@test:lint",
"@test:types",
"@test:feature"
]
}
}