We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4715c6 commit f9c27faCopy full SHA for f9c27fa
README.md
@@ -23,6 +23,25 @@ bin/cake plugin load Muffin/Webservice
23
24
## Usage
25
26
+In your `app.php`, configure your `app` service like any other configuration,
27
+by adding a new element to the configure array:
28
+
29
+```php
30
+ 'Webservices' => [
31
+ 'app' => [
32
+ 'className' => \Muffin\Webservice\Connection::class,
33
+ 'service' => 'Articles',
34
+ // Any additional keys will be set as Driver's config.
35
+ ]
36
37
+```
38
39
+You will also need to load the webservices in your `bootstrap.php` file:
40
41
42
+ConnectionManager::config(Configure::consume('Webservices'));
43
44
45
### As an ORM
46
47
#### Create driver
0 commit comments