-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.91 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
65
66
{
"name" : "fastbolt/sonata-admin-protected-fields",
"type" : "library",
"description" : "Provides simple functionality for protecting fields in sonata admin",
"keywords" : [
"fastbolt",
"sonata-admin"
],
"homepage" : "https://github.com/fastbolt/sonata-admin-protected-fields",
"license" : "MIT",
"authors" : [
{
"name" : "Daniel Hirtzbruch",
"email" : "[email protected]",
"homepage" : "https://github.com/dhirtzbruch",
"role" : "Developer"
}
],
"require" : {
"php" : "^8.0",
"sonata-project/admin-bundle" : "^4.9"
},
"require-dev" : {
"fastbolt/test-helpers" : "^0.1.2",
"fig-r/psr2r-sniffer" : "^1.3",
"phpmd/phpmd" : "^2.11",
"phpstan/phpstan" : "^1.4",
"phpunit/phpunit" : "^9.5",
"psalm/plugin-phpunit" : "^0.16.1",
"slevomat/coding-standard" : "^7.0",
"spryker/code-sniffer" : "^0.17.4",
"squizlabs/php_codesniffer" : "^3.6",
"vimeo/psalm" : "^4.22",
"weirdan/doctrine-psalm-plugin" : "^2.3"
},
"autoload" : {
"psr-4" : {
"Fastbolt\\SonataAdminProtectedFields\\" : "src/"
}
},
"autoload-dev" : {
"psr-4" : {
"Fastbolt\\SonataAdminProtectedFields\\Tests\\Unit\\" : "tests/unit/"
}
},
"scripts" : {
"phpunit" : "vendor/bin/phpunit",
"check-style" : "vendor/bin/phpcs",
"psalm" : "vendor/bin/psalm",
"fix-style" : "vendor/bin/phpcbf",
"test" : [
"@phpunit",
"@psalm",
"@check-style"
]
},
"config" : {
"optimize-autoloader" : true,
"sort-packages" : true,
"preferred-install" : "dist",
"allow-plugins" : {
"dealerdirect/phpcodesniffer-composer-installer" : true
}
},
"prefer-stable" : true
}