Commit Graph
44 Commits
Author SHA1 Message Date
Dries Vints 762e987e5b Uppercase doctype
In similar fashion as https://github.com/laravel/framework/pull/28583
2019-05-21 15:15:32 +02:00
Dries Vints fbd3ad7bbb Update changelog 2019-05-07 17:19:27 +02:00
Dries Vints af15618b57 Merge pull request #5013 from laravel/revert-5012-feature/exported-files
Revert "Exclude StyleCI config from exported files"
2019-04-30 14:02:22 +02:00
Dries Vints ccea56b6f9 Revert "Exclude StyleCI config from exported files (#5012)"
This reverts commit a6bf24134d.
2019-04-30 14:02:09 +02:00
Dries Vints f574aa76e3 Disable JS checks for now 2019-04-22 21:26:44 +02:00
Dries Vints 81fba471af Merge pull request #4998 from laravel/analysis-z9QV6a
Apply fixes from StyleCI
2019-04-22 16:06:16 +02:00
Dries Vints 43b09ad0f3 Add file exclusions for styleci 2019-04-22 16:06:06 +02:00
Dries Vints 91dc5ed286 Apply fixes from StyleCI 2019-04-22 14:06:03 +00:00
Dries Vints 597201a049 Add StyleCI config 2019-04-22 15:55:40 +02:00
Dries Vints 0f58190c7b Merge pull request #4989 from DrewRoberts/update-readme-laracasts
Update readme with Laracasts count
2019-04-12 12:06:24 +02:00
Dries Vints 4997f08105 Update changelog 2019-03-12 17:23:00 +01:00
Dries Vints 3d325b8485 Update changelog 2019-03-05 15:12:13 +01:00
Dries Vints 4c880d3c79 Update changelog 2019-02-26 18:02:07 +01:00
Dries Vints 0629a067a8 Merge branch '5.7' 2019-02-26 17:45:35 +01:00
Dries Vints 42c2a7ee27 Update changelog 2019-02-26 17:41:19 +01:00
Dries Vints 3c53897ee4 Merge branch 'master' into develop 2019-02-15 18:47:27 +01:00
Dries Vints 83b6be51ad Update changelog 2019-02-15 18:45:50 +01:00
Dries Vints fae44eeb26 Replace string helper 2019-02-12 16:53:41 +01:00
Dries Vints 75468420a4 Use same version as framework 2019-02-09 14:05:33 +01:00
Dries Vints e4f20eac36 Reverse minimum PHPUnit version 2019-02-09 12:21:57 +01:00
Dries Vints 4dc76847c1 Update to PHPUnit 8
Encourage people on 5.8 to use PHPUnit 8.
2019-02-08 17:14:08 +01:00
Dries Vints 2a1f3761e8 Fix Typo 2019-02-05 18:46:48 +01:00
Dries Vints 6efb843e7d Merge pull request #4926 from kawax/str
Use Str::random() instead of str_random()
2019-02-02 14:57:25 +01:00
Dries Vints 6e60cf93a4 Update UserFactory.php 2019-02-02 14:56:57 +01:00
Dries Vints 2498f317d7 Remove unused Bootstrap class
This class isn't available in Bootstrap 4.
2019-01-23 15:23:51 +01:00
Dries Vints 096c237727 Merge pull request #4896 from goodjack/patch-1
Remove extra whitespace
2019-01-09 13:12:32 +01:00
Dries Vints 321d9e3786 Update changelog 2019-01-03 17:46:21 +01:00
Dries Vints 8f06b20d12 Update changelog 2019-01-03 17:32:14 +01:00
Dries Vints d1db3cd089 Update changelog 2018-12-20 14:55:04 +01:00
Dries Vints af2b3b18e9 Update changelog 2018-11-29 18:22:22 +01:00
Dries Vints 78cb2685aa Add language entry for starts_with rule
See https://github.com/laravel/framework/pull/26612
2018-11-26 17:29:42 +01:00
Dries Vints 3f09521d01 Merge pull request #4861 from unstoppablecarl/middleware-priority-comment
[5.7] Update Kernel.php
2018-11-22 10:26:38 +01:00
Dries Vints ed7b78de46 Typo 2018-11-16 16:20:27 +01:00
Dries Vints 6f3aa7a4c5 Don't redirect for api calls
When calling api routes the Authenticate middleware attempts to redirect you to the login page. If you expect JSON back or don't have auth routes then you don't want this to happen. By re-using the logic from Laravel's exception handler on which format to output we can also determine wether to redirect the user to the login page or give them a JSON error response.
2018-10-12 15:40:15 +02:00
Dries Vints 568250557c Add new Stripe webhook config values
See https://github.com/laravel/cashier/pull/565
2018-10-11 18:12:19 +02:00
Dries Vints 7ff917aa20 Fix alpha_dash
It also accepts underscores as valid signs as explicitly stated in the docs and source code so I believe it would be best to also add it to the validation message.
2018-05-18 14:52:24 +02:00
Dries Vints 65c4d16d04 Do not use full paths 2017-03-06 12:39:46 +01:00
Dries Vints f0374e4fe6 Add cross-env as a dependency and update paths 2017-03-06 12:36:45 +01:00
Dries Vints 90886732cf Update description of filled rule
`filled` isn't really required. It just implies that it needs a value.
2017-03-01 16:52:59 +01:00
Dries Vints 483c9678c6 Sort Composer packages by default
It's much easier to search for packages in the composer.json file when they're sorted by default.
2016-12-17 15:25:24 +01:00
Dries Vints 2b8311f711 Add PHPSpec config file and dependency 2014-09-28 20:36:34 +02:00
Dries Vints 2ddf39f29f Remove classes from aliases list
Eloquent and Seeder were used to extend from which is a bad practice.
The SoftDeletingTrait should be imported just like the UserTrait and the RemindableTrait.
Str was also removed because it's just a shortcut for the namespace. People can always re-add it if they like.
I wasn't entirely sure what FormRequest was doing here but I have a feeling it's going to be used for the same reasons as one of the above classes. So I removed it as well.
2014-08-31 17:13:44 +02:00
Dries Vints c5f288d1a5 Remove space and add global class reference in docblock
Removed an unnecessary space before a comments rule and added a backslash to reference the global namespace in a docblock.

Signed-off-by: Dries Vints <[email protected]>
2013-07-20 16:32:39 +02:00
Dries Vints 457e76a470 Add sqs to list of supported drivers
Just forgotten I presume.
2013-03-05 15:41:03 +01:00