PHPackages                             anturi/larastarted - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. anturi/larastarted

ActiveLibrary

anturi/larastarted
==================

This package gives new route methods and it use a controller crud ready to use by herency

v1.1.1(1y ago)056MITPHP

Since Mar 9Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/JulianAnturi/anturi-larastarted)[ Packagist](https://packagist.org/packages/anturi/larastarted)[ RSS](/packages/anturi-larastarted/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (6)Versions (5)Used By (0)

🎞 `Larastarted` by Anturi
=========================

[](#-larastarted-by-anturi)

A Laravel library designed to speed up your development with automatic generation of models, controllers, migrations, routes, standardized responses, and more. Perfect for RESTful APIs with a clean and professional structure. 🧙‍♂️

---

Requirements
------------

[](#requirements)

Install the API base setup with the following command:

```
php artisan install:api
```

---

🚀 Installation
--------------

[](#-installation)

### Option 1: Use it locally

[](#option-1-use-it-locally)

Clone the repo or add it as a local package, then run:

```
composer require anturi/larastarted:dev-main
```

> 🔁 Make sure your branch is `main` or adjust the branch name accordingly.

---

🛠️ What does Larastarted do?
----------------------------

[](#️-what-does-larastarted-do)

With just one command, it automatically generates:

- 🧠 Model (`app/Models`)
- 🎮 Controller (`app/Http/Controllers`)
- 🧱 Migration (`database/migrations`)
- 🚤 API Route (`routes/api.php`)
- 🧹 Base configuration
- 🗑️ Logs with their own table (`logs`)

---

✨ Available Commands
--------------------

[](#-available-commands)

### 🧙 `anturi:generate`

[](#-anturigenerate)

```
php artisan anturi:generate Post posts
```

This command will generate:

- `Post.php` in `app/Models`
- `PostController.php` in `app/Http/Controllers`
- A migration for `posts`
- A route entry in `routes/api.php`

### 📝 Interactive Questions Example

[](#-interactive-questions-example)

When running the command, you'll be asked a few questions to customize your resource:

```
->expectsQuestion('Do you wish to create a migration?', true)
->expectsQuestion('Name of field (leave empty to finish)', 'title')
->expectsQuestion("Select the data type for 'title'", 'string')
->expectsQuestion("Length for 'title'? (leave empty to use default)", '255')
->expectsQuestion("Can the 'title' field be nullable?", false)
->expectsQuestion('Field name (leave empty to finish)', '')
->expectsQuestion('Do you want to add relationships?', false)
->expectsQuestion('Do you want to add a middleware to the route?', false)
```

---

🧹 Folder Structure
------------------

[](#-folder-structure)

```
Larastarted/
├── src/
│   ├── Commands/                  → Artisan commands
│   ├── config/                    → Configuration files
│   ├── Controllers/              → Reusable base controllers
│   ├── Generators/               → Generation logic (Model, Controller, etc)
│   ├── Helpers/                  → Reusable services (logs, CRUD, responses)
│   ├── Migrations/               → Internal package migrations
│   ├── Models/                   → Models used by the package
│   ├── Providers/                → Package's Service Provider
│   ├── Publishable/              → Files that can be published to the host app
│   ├── Routes.php                → Auto-injected routes
│   ├── Traits/                   → Useful traits like FieldBuilder
│   └── test/                     → Unit and feature tests

```

---

📄 Configuration
---------------

[](#-configuration)

The `AnturiServiceProvider` does the magic:

- Registers artisan commands
- Injects routes automatically
- Loads internal migrations
- Publishes configurations

```
$this->loadMigrationsFrom(__DIR__.'/../Migrations');
$this->loadRoutesFrom(__DIR__.'/../Routes.php');
$this->publishes([...], 'larastarted-config');
```

---

📱 Vendor Publishing
-------------------

[](#-vendor-publishing)

It’s highly recommended to publish the vendor files before using:

```
php artisan vendor:publish --tag=anturi-larastarted
```

---

🧪 Testing
---------

[](#-testing)

This package includes tests for:

- Generators
- Artisan commands
- Traits

```
php artisan test
```

---

🧠 Credits
---------

[](#-credits)

Crafted with 💚 by **Julian (a.k.a. Dimitri Rocket)** 🚀
Inspired by real-world needs for clean, fast API development.

###  Health Score

29

—

LowBetter than 59% of packages

Maintenance52

Moderate activity, may be stable

Popularity8

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 76.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~15 days

Total

4

Last Release

388d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/6d73e423f9d5bd0ef2d634774343644f8ad00e065581f59be99f4819c6875189?d=identicon)[AnturICE](/maintainers/AnturICE)

---

Top Contributors

[![JulianAnturi](https://avatars.githubusercontent.com/u/110612324?v=4)](https://github.com/JulianAnturi "JulianAnturi (13 commits)")[![anturibit](https://avatars.githubusercontent.com/u/153862516?v=4)](https://github.com/anturibit "anturibit (4 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/anturi-larastarted/health.svg)

```
[![Health](https://phpackages.com/badges/anturi-larastarted/health.svg)](https://phpackages.com/packages/anturi-larastarted)
```

###  Alternatives

[laravel/cashier

Laravel Cashier provides an expressive, fluent interface to Stripe's subscription billing services.

2.5k25.9M107](/packages/laravel-cashier)[laravel/pulse

Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.

1.7k12.1M99](/packages/laravel-pulse)[roots/acorn

Framework for Roots WordPress projects built with Laravel components.

9682.1M97](/packages/roots-acorn)[fumeapp/modeltyper

Generate TypeScript interfaces from Laravel Models

196277.9k](/packages/fumeapp-modeltyper)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[api-platform/laravel

API Platform support for Laravel

59126.4k6](/packages/api-platform-laravel)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
