-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
76 lines (76 loc) · 2.28 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
67
68
69
70
71
72
73
74
75
76
{
"name": "williarin/wordpress-interop",
"description": "Interoperability library to work with WordPress database in third party apps",
"license": "MIT",
"type": "library",
"keywords": [
"wordpress",
"database",
"interop",
"dbal",
"doctrine",
"orm"
],
"authors": [
{
"name": "William Arin",
"email": "williamarin.dev@gmail.com"
}
],
"require": {
"php": ">=8.0",
"doctrine/annotations": "^2.0",
"doctrine/dbal": "^3.8 || ^4.0",
"phpdocumentor/reflection-docblock": "^5.3",
"phpstan/phpdoc-parser": "^1.27",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/options-resolver": "^6.0 || ^7.0",
"symfony/property-access": "^6.0 || ^7.0",
"symfony/property-info": "^6.0 || ^7.0",
"symfony/serializer": "^6.0 || ^7.0",
"symfony/string": "^6.0 || ^7.0",
"symfony/translation-contracts": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.23",
"jetbrains/phpstorm-stubs": "^2022.3",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.7",
"maglnet/composer-require-checker": "^4.4",
"nikic/php-parser": "^4.19",
"phpro/grumphp": "^1.16 || ^2.0 <2.5",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5",
"rector/rector": "^0.12.13",
"roave/security-advisories": "dev-latest",
"symfony/dotenv": "^6.0 || ^7.0",
"symfony/var-dumper": "^6.0 || ^7.0",
"symplify/coding-standard": "^11.0",
"symplify/easy-coding-standard": "^11.0"
},
"autoload": {
"psr-4": {
"Williarin\\WordpressInterop\\": "src/"
},
"files": [
"src/Util/String/StringUtil.php"
]
},
"autoload-dev": {
"psr-4": {
"Williarin\\WordpressInterop\\Test\\": "test/Test/",
"Williarin\\WordpressInterop\\Test\\Fixture\\": "test/Fixture/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": true
}
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}