Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Extend from illuminate classes + bugfixing (main branch) (Work in progress) #43

Open
wants to merge 31 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
4599338
extending from Illuminati work in progress
joseraul Jan 17, 2022
6f293ed
Apply fixes from StyleCI
StyleCIBot Jan 17, 2022
d0ff6ab
allow camelcase in relations
joseraul Jan 17, 2022
25e4303
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 17, 2022
c9a5d5d
WIP
joseraul Jan 17, 2022
54f3ece
Apply fixes from StyleCI
StyleCIBot Jan 17, 2022
ac0fcb2
fix whereHas + softdeletes
joseraul Jan 18, 2022
6515281
Apply fixes from StyleCI
StyleCIBot Jan 18, 2022
5a2e50f
add orderByRaw
joseraul Jan 18, 2022
766297a
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 18, 2022
be5c95f
Apply fixes from StyleCI
StyleCIBot Jan 18, 2022
bcc2797
fix bug
joseraul Jan 18, 2022
e57a4d9
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 18, 2022
b511bc7
test hasmany lazy loading
joseraul Jan 19, 2022
1a81db0
delete more custom methods
joseraul Jan 19, 2022
14913af
Apply fixes from StyleCI
StyleCIBot Jan 19, 2022
c512e04
remove more custom code
joseraul Jan 19, 2022
7856ca1
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 19, 2022
7f222c4
Apply fixes from StyleCI
StyleCIBot Jan 19, 2022
9cdb709
fix some random failing tests
joseraul Jan 19, 2022
c727a49
more random tests fixed
joseraul Jan 19, 2022
9018af1
fix bug with contains method
joseraul Jan 19, 2022
eba7800
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 19, 2022
3a53e78
Apply fixes from StyleCI
StyleCIBot Jan 19, 2022
e5c80c9
more fixes
joseraul Jan 20, 2022
30181c6
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 20, 2022
edab0ee
Apply fixes from StyleCI
StyleCIBot Jan 20, 2022
7ef0a8e
add test for collection
joseraul Jan 20, 2022
cc65738
fix migrations
joseraul Jan 20, 2022
76a89a9
Merge branch 'extend-from-illuminate-classes' of https://github.com/u…
joseraul Jan 20, 2022
a2a366c
remove guzzle
joseraul Jan 20, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,14 @@
}
],
"require": {
"php": ">=7.4",
"php": ">=8.0",
"illuminate/container": "^8.0",
"illuminate/contracts": "^8.0",
"illuminate/database": "^8.0",
"illuminate/events": "^8.0",
"illuminate/support": "^8.0",
"illuminate/pagination": "^8.0",
"illuminate/console": "^8.0",
"nesbot/carbon": "^2.0",
"laudis/neo4j-php-client": "^2.3.3"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Console/Migrations/MigrateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function __construct(Migrator $migrator, $packagePath)
/**
* {@inheritDoc}
*/
public function fire()
public function handle()
{
if (!$this->confirmToProceed()) {
return;
Expand Down
Loading