-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcomposer.json
35 lines (35 loc) · 1.04 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
{
"name": "mukadi/wordpress-bundle",
"description": "Integrate wordpress and symfony in the same application",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Olivier M. Mukadi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"composer/installers": "^1.5",
"phpoption/phpoption": "^1.7",
"illuminate/support": "5.7.*||6.7.*",
"vlucas/phpdotenv": "^2.4||3.6.*",
"symfony/framework-bundle": "^3.4||^4.0||^5.0",
"doctrine/doctrine-bundle": "^1.0||^2.0",
"doctrine/orm": "^2.2",
"hautelook/phpass": "0.3",
"mukadi/doctrine-crud": "^1.0",
"johnpbloch/wordpress": "5.1",
"symfony/dotenv": ">=3.4",
"symfony/security-core": ">=3.4"
},
"autoload": {
"psr-4": {
"Mukadi\\WordpressBundle\\": "src/"
}
},
"suggest": {
"doctrine/doctrine-migrations-bundle": "For a best management of your database schema"
}
}