-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
77 lines (77 loc) · 2.25 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
77
{
"name": "phpsword/sword-bundle",
"description": "Modern WordPress development with Symfony",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"wordpress",
"modern-wordpress",
"symfony",
"symfony-bundle"
],
"authors": [
{
"name": "William Arin",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-iconv": "*",
"composer/composer": "^2.4.1",
"doctrine/doctrine-bundle": "^2.7.2",
"doctrine/orm": "^2.13 || ^3.0",
"roots/wp-password-bcrypt": "^1.1.0",
"symfony/dependency-injection": "^6.1 || ^7.0",
"symfony/framework-bundle": "^6.1 || ^7.0",
"symfony/http-kernel": "^6.1 || ^7.0",
"symfony/security-bundle": "^6.1 || ^7.0",
"symfony/translation": "^6.1 || ^7.0",
"symfony/yaml": "^6.1 || ^7.0",
"williarin/wordpress-interop": "^1.11",
"williarin/wordpress-interop-bundle": "^1.1.1",
"wp-cli/wp-cli-bundle": "^2.10"
},
"require-dev": {
"brain/monkey": "^2.6",
"ergebnis/composer-normalize": "^2.28.3",
"kubawerlos/php-cs-fixer-custom-fixers": "^3.11",
"matthiasnoback/symfony-dependency-injection-test": "^4.3",
"mockery/mockery": "^1.5",
"nikic/php-parser": "^4.15",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpro/grumphp": "^1.13",
"phpunit/phpunit": "^9.5.22",
"roave/security-advisories": "dev-latest",
"symplify/coding-standard": "^11.1",
"symplify/easy-coding-standard": "^11.1"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Sword\\SwordBundle\\": "src/"
},
"files": [
"src/Helper/ContainerHelper.php"
]
},
"autoload-dev": {
"psr-4": {
"Sword\\SwordBundle\\Test\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpro/grumphp": false
},
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.x-dev"
}
}
}