Skip to content
This repository was archived by the owner on Feb 14, 2023. It is now read-only.

Commit 06a4e68

Browse files
committed
wip
1 parent 4219339 commit 06a4e68

File tree

4 files changed

+11
-20
lines changed

4 files changed

+11
-20
lines changed

docs/.vuepress/config.ts

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ export default defineUserConfig<DefaultThemeOptions>({
6868
]
6969
},
7070
// {
71-
// text: 'Advanced topics',
72-
// children: [
73-
// {
74-
// text: 'TypeScript',
75-
// link: '/guide/typescript.md'
76-
// },
77-
// ]
78-
// },
79-
// {
8071
// text: 'Upgrading',
8172
// link: '/guide/upgrading.md'
8273
// },

docs/comparison.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ So here we'll explain the differences between them and this one.
66

77
## laravel-json-api
88

9-
- Repository here: https://github.com/laravel-json-api/laravel
9+
- Repository here: [https://github.com/laravel-json-api/laravel](https://github.com/laravel-json-api/laravel)
1010

1111
This is much more complex as it adds another layer of complexity on our application called `Schemas` so it doesn't only provide JSON:API parsing of the Eloquent models but also validation and comes with more extra stuff but with a much bigger sacrifice (**need to write much more code, while our solution is almost code-less**).
1212

1313
Also it comes licensed as Apache 2.0, while our is following the same Laravel's license: MIT.
1414

1515
## Fractal
1616

17-
- Repository here: https://github.com/thephpleague/fractal
17+
- Repository here: [https://github.com/thephpleague/fractal](https://github.com/thephpleague/fractal)
1818

1919
Much simpler than the one above, but still adds a new layer (as **it is not a Laravel package**).
2020

docs/guide/implementations.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10,27 +10,27 @@ Please consider using our forked one if you're using a version of Laravel older
1010

1111
Installation with:
1212

13-
```
13+
```sh
1414
composer require spatie/laravel-query-builder
1515
```
1616

17-
**Repository:** https://github.com/spatie/laravel-query-builder
18-
**Documentation:** https://spatie.be/docs/laravel-query-builder/v5/introduction
17+
- **Repository:** [https://github.com/spatie/laravel-query-builder](https://github.com/spatie/laravel-query-builder)
18+
- **Documentation:** [https://spatie.be/docs/laravel-query-builder/v5/introduction](https://spatie.be/docs/laravel-query-builder/v5/introduction)
1919

2020
## Our own fork
2121

2222
This is our own forked version of Spatie's one but with fixes and new implementations, also continuing our mission on supporting older versions of PHP and Laravel.
2323

24-
```
24+
```sh
2525
composer require skorelabs/laravel-query-builder
2626
```
2727

28-
**Repository:** https://github.com/skore/laravel-query-builder
29-
**Documentation:** https://spatie.be/docs/laravel-query-builder/v3/introduction
28+
- **Repository:** [https://github.com/skore/laravel-query-builder](https://github.com/skore/laravel-query-builder)
29+
- **Documentation:** [https://spatie.be/docs/laravel-query-builder/v3/introduction](https://spatie.be/docs/laravel-query-builder/v3/introduction)
3030

3131
## What about the frontend?
3232

3333
So many of you will ask this same question. The answer is simple as JSON:API is a common protocol, you could do your own implementation or use one of these:
3434

35-
- JavaScript browser & server (NodeJS / SSR-capable): https://github.com/olosegres/jsona
36-
- Check any other libraries in: https://jsonapi.org/implementations/
35+
- JavaScript browser & server (NodeJS / SSR-capable): [https://github.com/olosegres/jsona](https://github.com/olosegres/jsona)
36+
- Check any other libraries in: [https://jsonapi.org/implementations/](https://jsonapi.org/implementations/)

docs/guide/usage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
::: tip
2-
We strongly recommend to use another package to manage the requests filtering, sorting, appending, etc. Check [Using with another libraries](another_libraries.md).
2+
We strongly recommend to use another package to manage the requests filtering, sorting, appending, etc. Check [Implementations](implementations.md).
33
:::
44

55
# Usage

0 commit comments

Comments
 (0)