Commit d2d03280 by Pancholin

edit composer file

parent 7db59228
...@@ -7,13 +7,13 @@ ...@@ -7,13 +7,13 @@
- Run this in the terminal - Run this in the terminal
```php ```php
composer require onestartup/product composer require onestartup/product_resources
``` ```
- after add the ServiceProvider to the providers array in config/app.php - after add the ServiceProvider to the providers array in config/app.php
```php ```php
Onestartup\Product\ProductServiceProvider::class, Onestartup\ProductResource\ProductResourceServiceProvider::class
``` ```
- Run migration - Run migration
...@@ -27,7 +27,7 @@ php artisan migrate ...@@ -27,7 +27,7 @@ php artisan migrate
```php ```php
public function products() public function products()
{ {
return $this->hasMany('Onestartup\Product\Model\Product', 'user_id'); return $this->hasMany('Onestartup\Product\Model\ProductResource', 'user_id');
} }
``` ```
......
...@@ -12,6 +12,6 @@ ...@@ -12,6 +12,6 @@
"minimum-stability": "dev", "minimum-stability": "dev",
"require": {}, "require": {},
"autoload": { "autoload": {
"psr-4": {"Onestartup\\ProductResources\\": "src"} "psr-4": {"Onestartup\\ProductResource\\": "src"}
} }
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment