Ryan Chandler
Ryan Chandler
The output messages are a bit big at the moment. Could probably use a task list / step list instead.
Thought it might be useful to start tracking some errors/false negatives that show up.
Hey, looking to use this alongside a PHAR bundle produced with the [Box](https://github.com/box-project/box) library. I downloaded the latest build from the workflow artifacts. Upon concatenating the 2 files together, PHP...
This pull request adds a new `--view` option to the `make:mail` command that will create a new empty Blade file and configure the `Mailable` to use it by default. It...
This pull request adds support for strict tables in SQLite. ```php Schema::create('users', function (Blueprint $table) { $table->id(); $table->strict(); // This makes the table "STRICT". }); ``` I think this is...
Still experimenting with this but a rough first pass can be seen. The idea here is that instead of using the `LexicalBuilder` to build up a `LexerInterface` at runtime, you...
An AST printer should be able to take an AST generated by the parser and reconstruct the original PHP source code. This will be especially useful for some tools I...