Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kevinbatdorf/artisan-api
Always up to date api to search Laravel Artisan commands
https://github.com/kevinbatdorf/artisan-api
laravel php
Last synced: 2 months ago
JSON representation
Always up to date api to search Laravel Artisan commands
- Host: GitHub
- URL: https://github.com/kevinbatdorf/artisan-api
- Owner: KevinBatdorf
- Created: 2022-06-21T01:42:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-09-13T08:08:11.000Z (3 months ago)
- Last Synced: 2024-09-13T21:21:22.963Z (3 months ago)
- Topics: laravel, php
- Language: TypeScript
- Homepage: https://artisan-api.vercel.app/api/commands
- Size: 423 KB
- Stars: 3
- Watchers: 4
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
Awesome Lists containing this project
README
# Laravel Artisan Command API
An API to search Laravel Artisan commands by version or keyword.
## Endpoints
List available versions ([Try it](https://artisan-api.vercel.app/api/versions))
```
GET /api/versions
```
List all commands ([Try it](https://artisan-api.vercel.app/api/commands))
```
GET /api/commands
```
Search for a command ([Try it](https://artisan-api.vercel.app/api/commands?s=database))
```
GET /api/commands?s=database
```
Specify a version ([Try it](https://artisan-api.vercel.app/api/commands?v=10.x))
```
GET /api/commands?v=10.x