-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
56 lines (56 loc) · 1.4 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
{
"name": "worksome/foggy",
"description": "Foggy is a tool for making database dumps with some data removed/changed.",
"authors": [
{
"name": "Oliver Nybroe",
"email": "[email protected]"
}
],
"license": ["MIT"],
"bin": [
"bin/foggy"
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-pdo": "*",
"doctrine/dbal": "^3.6",
"symfony/console": "^6.4 || ^7.0",
"symfony/var-dumper": "^6.4 || ^7.0",
"thecodingmachine/safe": "^2.5",
"fakerphp/faker": "^1.10"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"pestphp/pest": "^3.4",
"mockery/mockery": "^1.5.1",
"worksome/coding-style": "^2.8"
},
"autoload": {
"psr-4": {
"Worksome\\Foggy\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Worksome\\Foggy\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/ecs --fix",
"test:pest" : "vendor/bin/pest",
"test:style": "vendor/bin/ecs",
"test": [
"@test:style",
"@test:pest"
]
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"worksome/coding-style": true
}
}
}