Zlatoslav Desyatnikov
Zlatoslav Desyatnikov
There is a cool openapi-package: https://github.com/vyuldashev/laravel-openapi I beleive that it will be able to build OpenAPI documentation using this package and auto-generated schemas. I'm gonna try it a bit later.
@lindyhopchris Hi! Did you have any plans about it? It's just the last thing that don't let us to upgrade to the brand-new package. P.S.: It's amazing and much better...
I tried to make my-own `ToMany`-based relationship class but it's not allowed: ``` Expecting relationships pipelineSteps to be an Eloquent JSON API to-many relationship. ``` Ok. I'm gonna try to...
@inkeliz > The only way to return '18446744073709551615' is using string Yes. And it would be correct. And then the developer may use `bcmath` or another way to operate with...
I thought that `shouldReceive` is deprecated 🤔 It should be replaced with `expects` (means `shouldReceive` + `once`) and `allows` (just `shouldReceive`). Because `should` word isn't fine there.
Another {json:api} implementation for Laravel has ability to do it. Docs: https://laraveljsonapi.io/docs/1.0/digging-deeper/proxies.html Repo: https://github.com/laravel-json-api/laravel. It's developed by author of this package and has a lot of new cool features and...
I think it relates to https://github.com/repman-io/repman/issues/122
Want it! We are used Satis too. And it was very easy to develop new packages.
@Romick2005 @gmsa, maybe add this to README or wiki? 1. Create plugins/vue-grid.js with content: ```js import Vue from 'vue'; import VueGridLayout from 'vue-grid-layout' Vue.component('grid-layout', VueGridLayout.GridLayout); Vue.component('grid-item', VueGridLayout.GridItem); ``` 2. Add...