-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
44 lines (44 loc) · 1.26 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
{
"name": "koselig/library",
"description": "Integrate Wordpress into Laravel seamlessly",
"license": "(0BSD or WTFPL)",
"authors": [
{
"name": "Jordan Doyle",
"email": "[email protected]"
}
],
"require": {
"illuminate/support": "^5.7",
"illuminate/database": "^5.7",
"illuminate/routing": "^5.7",
"watson/rememberable": "^2.0",
"cweagans/composer-patches": "^1.6"
},
"autoload": {
"psr-4": {
"Koselig\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"extra": {
"laravel": {
"providers": [
"Koselig\\Providers\\KoseligServiceProvider"
],
"aliases": {
"Wordpress": "Koselig\\Support\\Wordpress",
"Meta": "Koselig\\Models\\Meta",
"Query": "Koselig\\Facades\\Query",
"Loop": "Koselig\\Facades\\Loop"
}
},
"patches": {
"johnpbloch/wordpress-core": {
"Patch __ method in l10n to stop conflicting with Laravel": "https://github.com/koselig/wordpress-core/commit/0881e719711b68812934608a01e986f420658674.diff"
}
}
}
}