Commit Graph

317 Commits

Author SHA1 Message Date
annajwasz 120ffbe865 Initial commit 2025-02-20 00:14:04 +07:00
Perry van der Meer 3622d746fd
Update composer.json (#6490) 2024-11-14 09:30:38 -06:00
Vaggelis Yfantis 70f437b6fc
Add $schema property to composer.json (#6484) 2024-11-03 15:04:06 -06:00
Nuno Maduro 82a83a6981
Fixes pail timing out after an hour (#6473) 2024-10-21 08:59:43 -05:00
Taylor Otwell f9f5e3c3ae wip 2024-10-15 15:03:46 -05:00
Taylor Otwell 6c3d2fb4a0 adjust colors 2024-10-14 09:25:43 -05:00
Taylor Otwell 2f17c97641 remove retries 2024-10-14 09:22:52 -05:00
Taylor Otwell 0973f0a336 add restart tries 2024-10-11 16:57:35 -05:00
Taylor Otwell b378ce946a
Add Tailwind, "composer run dev" (#6463)
This PR does two things...

First, it adds a basic Tailwind configuration out of the box. This lets you start using Tailwind immediately without installing any starter kit. Useful if you just want to mess around or build things from scratch.

Second, it adds a composer run dev script, which starts php artisan serve, php artisan queue:listen --tries=1, php artisan pail (now a dev dependency by default), and npm run dev all in one command, with color coded output in the terminal using concurrently.
2024-10-10 14:21:56 -05:00
Amdadul Haq 6e71b994e7
Update composer.json (#6454) 2024-09-18 11:21:54 -05:00
Nuno Maduro 5d86ab4b72
Removes `spatie/laravel-ignition` (#6406) 2024-05-28 18:01:13 +02:00
Viktor Szépe 708fdb1a36
Fix PHPUnit constraint (#6389)
there was a BC break in PHPUnit https://github.com/sebastianbergmann/phpunit/issues/5690
2024-04-03 09:28:26 +02:00
Phil Bates 58baff2c70
[11.x] Use PHPUnit v11 (#6385)
Everythings works with no changes needed.

See:
* https://phpunit.de/announcements/phpunit-11.html
* https://github.com/sebastianbergmann/phpunit/blob/11.0.0/ChangeLog-11.0.md
2024-03-26 12:50:37 -05:00
Zep Fietje e7aa6346de
Remove branch alias from composer.json (#6366)
Cleans up composer.json similar to https://github.com/laravel/laravel/pull/6103.
2024-03-13 10:45:03 +01:00
Nuno Maduro 6ea57d766f
[11.x] Fixes SQLite driver missing (#6361)
* Fixes SQLite driver missing

* Workaround missing SQLite extension

* Adjusts command

* Update composer.json
2024-03-12 13:20:16 -05:00
Nuno Maduro c1fc3a0e69
Adjusts minimum stability 2024-03-12 13:52:43 +00:00
Nuno Maduro 1f7e88072e
Requires Guzzle on `laravel/framework` (#6324) 2024-01-22 12:39:23 -06:00
Taylor Otwell 5955d2e4f9 revert quietness 2024-01-20 16:21:58 -06:00
Taylor Otwell 27a4111fc2 run database migrations quietly on create project 2024-01-20 16:18:36 -06:00
Taylor Otwell e23c0c1bfd
SQLite for local dev (#6322)
* update values for a sqlite default world

* migrate on post create project

* touch database

* fix typo
2024-01-20 16:02:54 -06:00
Nuno Maduro b726807a90
Uses Tinker's stable branch 2024-01-09 18:23:03 +00:00
Dries Vints f3b9740d56
Move spatie/laravel-ignition to dev dependencies 2024-01-05 14:14:08 +01:00
Nuno Maduro 14bc24d236
Adds Laravel Ignition (#6312) 2024-01-04 17:47:07 +01:00
Nuno Maduro 1674895c04
[11.x] Bumps versions on `composer.json` (#6311)
* Bumps minor versions

* Uses minor pattern

* Uses `1.6.3` for axious
2024-01-03 07:46:30 -06:00
Taylor Otwell 428a190050
[11.x] Slim skeleton (#6188)
See: https://github.com/laravel/framework/pull/47309

# Laravel 11 Skeleton Overview

### General Notes

More environment variables have been added to the `.env.example` file. 

The default `QUEUE_CONNECTION` variable value has been updated to `database` instead of `sync`.

The `BROADCAST_DRIVER` and `CACHE_DRIVER` environment variables have been renamed to `BROADCAST_CONNECTION` and `CACHE_STORE`, respectively.

The HTTP Kernel has been removed. Configuration that was previously done in this file can be done in the `bootstrap/app.php` file, including registering / replacing middleware.

The console kernel has been removed. Schedules can be defined in the console “routes” file. Commands generated by `make:command` are automatically loaded and do not require registration. Additional command loading paths can be registered in the `bootstrap/app.php` file.

The exception handler has been removed. Exception handling behavior can be configured in the `bootstrap/app.php` file via `reportable`, `renderable`, `throttle`, and more. Callbacks received by these functions will have their type hints inspected to see if they handle a given exception.

The base HTTP controller no longer extends any other classes (requiring new middleware definition feature). No traits are included by default on the base controller. Authorization can be done using facades, or traits can be added manually.

All middleware has been removed. Configuration of these middleware’s behavior can be done via static methods on the middleware themselves (see framework notes).

The `User` model now utilizes a `casts` method instead of a property. The `HasApiTokens` trait has been removed by default since Sanctum is not installed by default.

All service providers except the `AppServiceProvider` have been removed. Policies are auto-discovered and gates can be registered in `AppServiceProvider`. Likewise, events can be registered in `AppServiceProvider`. Routing behavior is now determined / customized in the `bootstrap/app.php` file.

New `bootstrap/app.php` file can be used to customize core framework behavior like routing, container bindings, middleware, and exception handling.

Sanctum is no longer installed by default (see `install:api`).

Configuration files are not present by default. Can be published by `config:publish` command. Default values are present in the framework and application level configuration now cascades with framework definitions, so only customized values need be present in application level configuration files.

Migration files have been re-dated to be evergreen. The `password_reset_tokens` table migration has been combined into the `users` table migration file. Likewise, the `jobs` table migration has been combined into a single migration with the `failed_jobs` table.

Echo bootstrapping has been removed by default. It is re-inserted by new `install:broadcasting` command.

API and channel routes files are not present by default, can be recreated by `install:api` and `install:broadcasting` respectively.
2023-11-28 14:28:15 -06:00
Taylor Otwell de6d4f58cc fixing conflicts 2023-11-06 17:31:18 -06:00
Mior Muhammad Zaki b0b29e1296
[10.x] Update minimum `laravel/sanctum` (#6261)
PR #6234 updated the configuration but it depends on Sanctum 3.3. This PR avoids installing Sanctum 3.2 with the new config.
2023-10-25 09:29:35 -05:00
Julius Kiekbusch 424c99c5b9
Set new Sail constraint (#6260) 2023-10-24 12:03:22 -05:00
Nuno Maduro 96fb350fb5
Re-adds tinker (#6254) 2023-10-13 14:51:55 -05:00
Nuno Maduro 645ab9030f
Fixes build of `dev-master` (#6252) 2023-10-12 09:39:09 -05:00
Dries Vints b1011d1687 Laravel v11 compatible versions 2023-06-01 13:50:54 -05:00
Dries Vints 64173fbedf dev stability 2023-06-01 13:49:58 -05:00
Dries Vints 64f3d149cb Prepare v11 2023-06-01 13:49:58 -05:00
Taylor Otwell 85203d687e update description 2023-06-01 11:12:28 -05:00
Eliezer Margareten 7e0a2db2e0
Add hashed cast to user password (#6171)
* Add `hashed` cast to user password

* Update composer.json
2023-05-10 13:51:00 -05:00
Julius Kiekbusch ec38e3bf76
Fix laravel/framework constraints for Default Service Providers (#6160) 2023-04-18 18:21:20 +02:00
Nuno Maduro 64685e6f20
Adds `phpunit/phpunit@10.1` support (#6155) 2023-04-14 09:03:05 -05:00
Nicolas Grekas ad279a61d1
Allow php-http/discovery as a composer plugin (#6106) 2023-02-15 10:11:56 -06:00
Stephen Damian - PHP / Laravel 10 / Vue.js / React e4abd484e5
Remove branch-alias from composer.json (#6103)
Co-authored-by: s-damian <contact@damian-freelance.fr>
2023-02-14 16:57:14 +01:00
Taylor Otwell acd0f29ac7 update min stability 2023-02-14 09:31:57 -06:00
Nuno Maduro 99b1d97321
[10.x] Adds PHPUnit 10 support (#6052)
* Adds PHPUnit 10 support

* Reverts `noNamespaceSchemaLocation`

* Improves PHPUnit configuration file
2023-02-07 09:26:27 -06:00
Nuno Maduro a55085b856
Uses Laravel Ignition `v2.x` (#6079) 2023-01-23 18:25:20 +00:00
Dries Vints 1d0dad9386
Use dev stability for master 2023-01-13 15:01:10 +01:00
Dries Vints 875e6f17e3
Merge branch '9.x' 2023-01-13 14:58:30 +01:00
Nuno Maduro 5c7cc8eee4
Keeps `"prefer-stable": true` 2023-01-11 15:50:07 +00:00
Nuno Maduro 75d22431af
Removes redundant composer setting 2023-01-11 15:21:12 +00:00
Taylor Otwell c1092ec084 use min stability stable 2023-01-11 08:11:39 -06:00
Dries Vints af241e1572
Update composer.json 2023-01-10 19:06:40 +01:00
Dries Vints 28894568fd
Update composer.json 2023-01-06 14:35:53 +01:00
Dries Vints 53e2ce5ba5
Merge branch '9.x'
# Conflicts:
#	CHANGELOG.md
#	composer.json
2022-10-25 12:26:31 +02:00