-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
40 lines (40 loc) · 978 Bytes
/
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
{
"name": "jeffochoa/laravel-wordpress-client",
"description": "A small client to request data from a wordpress project using the built-in JSON api.",
"type": "library",
"version": "1.0.0",
"require": {
"laravel/framework": "5.5.*",
"kitetail/zttp": "^0.3.0"
},
"require-dev": {
"vlucas/phpdotenv": "^2.4",
"orchestra/testbench": "^3.4"
},
"license": "MIT",
"authors": [
{
"name": "Jefferson Ochoa (Jeff)"
}
],
"autoload": {
"psr-4": {
"WordpressClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"WordpressClient\\Providers\\WordpressClientServiceProvider"
],
"aliases": {
"Wordpress": "WordpressClient\\Facades\\Wordpress"
}
}
}
}