Skip to content

Commit c7d6f25

Browse files
committed
1.0 release under Gearbox
1 parent 80ff832 commit c7d6f25

21 files changed

+55
-55
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 Blue Feather Group, LLC
3+
Copyright (c) 2022 Gearbox Solutions, LLC
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ This package lets you easily connect to your FileMaker database through the Data
55

66
## Support
77

8-
This package is built and maintained by [Blue Feather](https://www.bluefeathergroup.com/). We build fantastic web apps with technologies like Laravel, Vue, React, and Node. If you would like assistance building your own web app, either using this package or other technologies, please [contact us](https://www.bluefeathergroup.com/contact/) for a free introductory consultation to discuss your project.
8+
This package is built and maintained by [Gearbox Solutions](https://gearboxgo.com/). We build fantastic web apps with technologies like Laravel, Vue, React, and Node. If you would like assistance building your own web app, either using this package or other technologies, please [contact us](https://gearboxgo.com/) for a free introductory consultation to discuss your project.
99

1010
## Features
1111
* Uses the FileMaker Data API for accessing your FileMaker data
@@ -28,10 +28,10 @@ This package is built and maintained by [Blue Feather](https://www.bluefeathergr
2828
Laravel 7.3 or later.
2929

3030
# Installation
31-
Install `bluefeather/eloquent-filemaker` in your project using Composer.
31+
Install `gearbox-solutions/eloquent-filemaker` in your project using Composer.
3232

3333
```
34-
composer require bluefeather/eloquent-filemaker
34+
composer require gearbox-solutions/eloquent-filemaker
3535
```
3636
# Usage
3737
With the package installed you can now have access to all the features of this package. There are a few different areas to configure.
@@ -336,7 +336,7 @@ User.php
336336
```
337337
public function company()
338338
{
339-
return new \BlueFeather\EloquentFileMaker\Database\Eloquent\Relations\BelongsTo(Company::query(), $this, 'company_id', 'id', '');
339+
return new \GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations\BelongsTo(Company::query(), $this, 'company_id', 'id', '');
340340
}
341341
342342
```

composer.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
2-
"name": "bluefeather/eloquent-filemaker",
2+
"name": "gearbox-solutions/eloquent-filemaker",
33
"description": "A package for getting FileMaker records as Eloquent models in Laravel",
44
"type": "library",
55
"license": "MIT",
66
"keywords": [
7-
"Blue Feather",
7+
"Gearbox Solutions",
88
"FileMaker",
99
"Database",
1010
"Data API",
@@ -15,32 +15,32 @@
1515
"authors": [
1616
{
1717
"name": "David Nahodyl",
18-
"email": "david@bluefeathergroup.com"
18+
"email": "david@gearboxgo.com"
1919
}
2020
],
2121
"autoload": {
2222
"psr-4": {
23-
"BlueFeather\\EloquentFileMaker\\": "src/",
23+
"GearboxSolutions\\EloquentFileMaker\\": "src/",
2424
"Tests\\": "tests/"
2525
}
2626
},
2727
"require": {
28-
"php": ">=7.2",
29-
"illuminate/database": "^7.0|^8.0|^9.0",
30-
"guzzlehttp/guzzle": "^7.2",
28+
"php": ">=8.0",
29+
"illuminate/database": "^9.0|^10.0",
30+
"guzzlehttp/guzzle": "^7.5",
3131
"ext-json": "*"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^5.0 || ^6.0 || ^7.0",
35-
"mockery/mockery": "^1.4"
34+
"orchestra/testbench": "^7.0",
35+
"mockery/mockery": "^1.5.1"
3636
},
3737
"extra": {
3838
"laravel": {
3939
"providers": [
40-
"BlueFeather\\EloquentFileMaker\\Providers\\FileMakerConnectionServiceProvider"
40+
"GearboxSolutions\\EloquentFileMaker\\Providers\\FileMakerConnectionServiceProvider"
4141
],
4242
"aliases": {
43-
"FM": "BlueFeather\\EloquentFileMaker\\Support\\Facades\\FM"
43+
"FM": "GearboxSolutions\\EloquentFileMaker\\Support\\Facades\\FM"
4444
}
4545
}
4646
}

src/Database/Eloquent/Concerns/FMGuardsAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns;
3+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns;
44

55
use Illuminate\Support\Facades\Cache;
66

src/Database/Eloquent/Concerns/FMHasAttributes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns;
3+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns;
44

55
use Illuminate\Database\Eloquent\Concerns\HasAttributes;
66

src/Database/Eloquent/Concerns/FMHasRelationships.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

33

4-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns;
4+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns;
55

6-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Relations\BelongsTo;
7-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Relations\HasMany;
8-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Relations\HasOne;
6+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations\BelongsTo;
7+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations\HasMany;
8+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations\HasOne;
99
use Illuminate\Database\Eloquent\Builder;
1010
use Illuminate\Database\Eloquent\Model;
1111

src/Database/Eloquent/FMEloquentBuilder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<?php
22

33

4-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent;
4+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent;
55

6-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns\FMHasRelationships;
7-
use BlueFeather\EloquentFileMaker\Database\Query\FMBaseBuilder;
8-
use BlueFeather\EloquentFileMaker\Exceptions\FileMakerDataApiException;
6+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns\FMHasRelationships;
7+
use GearboxSolutions\EloquentFileMaker\Database\Query\FMBaseBuilder;
8+
use GearboxSolutions\EloquentFileMaker\Exceptions\FileMakerDataApiException;
99
use Illuminate\Contracts\Support\Arrayable;
1010
use Illuminate\Database\Eloquent\Builder;
1111
use Illuminate\Pagination\Paginator;

src/Database/Eloquent/FMModel.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
<?php
22

3-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent;
3+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent;
44

5-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns\FMGuardsAttributes;
6-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns\FMHasAttributes;
7-
use BlueFeather\EloquentFileMaker\Database\Eloquent\Concerns\FMHasRelationships;
8-
use BlueFeather\EloquentFileMaker\Database\Query\FMBaseBuilder;
9-
use BlueFeather\EloquentFileMaker\Exceptions\FileMakerDataApiException;
5+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns\FMGuardsAttributes;
6+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns\FMHasAttributes;
7+
use GearboxSolutions\EloquentFileMaker\Database\Eloquent\Concerns\FMHasRelationships;
8+
use GearboxSolutions\EloquentFileMaker\Database\Query\FMBaseBuilder;
9+
use GearboxSolutions\EloquentFileMaker\Exceptions\FileMakerDataApiException;
1010
use Illuminate\Database\Eloquent\Builder;
1111
use Illuminate\Database\Eloquent\Model;
1212
use Illuminate\Database\Eloquent\Relations\Concerns\AsPivot;

src/Database/Eloquent/Relations/BelongsTo.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33

4-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent\Relations;
4+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations;
55

66

77
class BelongsTo extends \Illuminate\Database\Eloquent\Relations\BelongsTo

src/Database/Eloquent/Relations/HasMany.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?php
22

33

4-
namespace BlueFeather\EloquentFileMaker\Database\Eloquent\Relations;
4+
namespace GearboxSolutions\EloquentFileMaker\Database\Eloquent\Relations;
55

66

77
class HasMany extends \Illuminate\Database\Eloquent\Relations\HasMany

0 commit comments

Comments
 (0)