Skip to content

Commit d1157ef

Browse files
author
quentin.schmick
committed
Updated namepsace
1 parent 63d080e commit d1157ef

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

65 files changed

+216
-216
lines changed

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: bluefyn-international
1+
github: always-open

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
blank_issues_enabled: false
22
contact_links:
33
- name: Ask a question
4-
url: https://github.com/bluefyn-international/report-engine/discussions/new?category=q-a
4+
url: https://github.com/always-open/report-engine/discussions/new?category=q-a
55
about: Ask the community for help
66
- name: Request a feature
7-
url: https://github.com/bluefyn-international/report-engine/discussions/new?category=ideas
7+
url: https://github.com/always-open/report-engine/discussions/new?category=ideas
88
about: Share ideas for new features
99
- name: Report a bug
10-
url: https://github.com/bluefyn-international/report-engine/issues/new
10+
url: https://github.com/always-open/report-engine/issues/new
1111
about: Report a reproducable bug

.github/SECURITY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Security Policy
22

3-
If you discover any security related issues, please email quentin.schmick@nathanjames.com instead of using the issue tracker.
3+
If you discover any security related issues, please email qschmick@gmail.com instead of using the issue tracker.

LICENSE.md

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

3-
Copyright (c) bluefyn-international <quentin.schmick@nathanjames.com>
3+
Copyright (c) always-open <qschmick@gmail.com>
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: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# General reporting engine for Laravel
22

3-
[![Latest Version on Packagist](https://img.shields.io/packagist/v/bluefyn-international/report-engine.svg?style=flat-square)](https://packagist.org/packages/bluefyn-international/report-engine)
4-
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/bluefyn-international/report-engine/run-tests?label=tests)](https://github.com/bluefyn-international/report-engine/actions?query=workflow%3Arun-tests+branch%3Amain)
5-
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/bluefyn-international/report-engine/Check%20&%20fix%20styling?label=code%20style)](https://github.com/bluefyn-international/report-engine/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6-
[![Total Downloads](https://img.shields.io/packagist/dt/bluefyn-international/report-engine.svg?style=flat-square)](https://packagist.org/packages/bluefyn-international/report-engine)
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/always-open/report-engine.svg?style=flat-square)](https://packagist.org/packages/always-open/report-engine)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/workflow/status/always-open/report-engine/run-tests?label=tests)](https://github.com/always-open/report-engine/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/workflow/status/always-open/report-engine/Check%20&%20fix%20styling?label=code%20style)](https://github.com/always-open/report-engine/actions?query=workflow%3A"Check+%26+fix+styling"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/always-open/report-engine.svg?style=flat-square)](https://packagist.org/packages/always-open/report-engine)
77

88
General reporting engine for Laravel
99

@@ -12,7 +12,7 @@ General reporting engine for Laravel
1212
You can install the package via composer:
1313

1414
```bash
15-
composer require bluefyn-international/report-engine
15+
composer require always-open/report-engine
1616
```
1717

1818
## Usage
@@ -28,8 +28,8 @@ the columns which will be output.
2828
namespace App\Reports\User;
2929

3030
use App\Models\User;
31-
use BluefynInternational\ReportEngine\BaseFeatures\Data\Types\Text;
32-
use BluefynInternational\ReportEngine\ReportBase;
31+
use AlwaysOpen\ReportEngine\BaseFeatures\Data\Types\Text;
32+
use AlwaysOpen\ReportEngine\ReportBase;
3333
use Illuminate\Database\Query\Builder;
3434

3535
class UserReport extends ReportBase
@@ -279,7 +279,7 @@ Please review [our security policy](../../security/policy) on how to report secu
279279

280280
## Credits
281281

282-
- [BluefynInternational](https://github.com/bluefyn-international)
282+
- [AlwaysOpen](https://github.com/always-open)
283283
- [All Contributors](../../contributors)
284284

285285
## License

composer.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,25 @@
11
{
2-
"name": "bluefyn-international/report-engine",
2+
"name": "always-open/report-engine",
33
"description": "General reporting engine for Laravel",
44
"keywords": [
5-
"bluefyn-international",
5+
"always-open",
66
"laravel",
77
"report-engine"
88
],
9-
"homepage": "https://github.com/bluefyn-international/report-engine",
9+
"homepage": "https://github.com/always-open/report-engine",
1010
"license": "MIT",
1111
"authors": [
1212
{
13-
"name": "BluefynInternational",
14-
"email": "quentin.schmick@nathanjames.com",
13+
"name": "AlwaysOpen",
14+
"email": "qschmick@gmail.com",
1515
"role": "Developer"
1616
}
1717
],
1818
"require": {
1919
"php": "^8.0.0|^8.1.0",
2020
"spatie/laravel-package-tools": "^1.4.3",
2121
"illuminate/contracts": "^9.0",
22-
"bluefyn-international/sidekick": "^3.0",
22+
"always-open/sidekick": "^3.0",
2323
"brick/money": "^0.5.0",
2424
"laravelcollective/html": "^6.2"
2525
},
@@ -33,12 +33,12 @@
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"BluefynInternational\\ReportEngine\\": "src"
36+
"AlwaysOpen\\ReportEngine\\": "src"
3737
}
3838
},
3939
"autoload-dev": {
4040
"psr-4": {
41-
"BluefynInternational\\ReportEngine\\Tests\\": "tests"
41+
"AlwaysOpen\\ReportEngine\\Tests\\": "tests"
4242
}
4343
},
4444
"scripts": {
@@ -52,10 +52,10 @@
5252
"extra": {
5353
"laravel": {
5454
"providers": [
55-
"BluefynInternational\\ReportEngine\\ReportEngineServiceProvider"
55+
"AlwaysOpen\\ReportEngine\\ReportEngineServiceProvider"
5656
],
5757
"aliases": {
58-
"ReportEngine": "BluefynInternational\\ReportEngine\\ReportEngineFacade"
58+
"ReportEngine": "AlwaysOpen\\ReportEngine\\ReportEngineFacade"
5959
}
6060
}
6161
},

phpunit.xml.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
verbose="true"
2020
>
2121
<testsuites>
22-
<testsuite name="BluefynInternational Test Suite">
22+
<testsuite name="AlwaysOpen Test Suite">
2323
<directory>tests</directory>
2424
</testsuite>
2525
</testsuites>

resources/views/base-web.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<div class="card-header">
2121
<div id="filterContainer">
2222
<div>
23-
{!! \BluefynInternational\ReportEngine\ReportBase::rendersFilters($filterColumns) !!}
23+
{!! \AlwaysOpen\ReportEngine\ReportBase::rendersFilters($filterColumns) !!}
2424
</div>
2525
<div>
2626
<button id="download-csv">Download CSV</button>

resources/views/partials/empty-not-empty-filter.blade.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ class="custom-select report-filter-input"
88
onchange="document.getElementById('{{ $field }}_filter_action').value = this.selectedOptions[0].getAttribute('data-operator') || '';"
99
>
1010
<option></option>
11-
<option value="1" data-operator="{{ \BluefynInternational\ReportEngine\BaseFeatures\Filters\IsEmptyFilter::key() }}">Yes</option>
12-
<option value="0" data-operator="{{ \BluefynInternational\ReportEngine\BaseFeatures\Filters\IsNotEmptyFilter::key() }}">No</option>
11+
<option value="1" data-operator="{{ \AlwaysOpen\ReportEngine\BaseFeatures\Filters\IsEmptyFilter::key() }}">Yes</option>
12+
<option value="0" data-operator="{{ \AlwaysOpen\ReportEngine\BaseFeatures\Filters\IsNotEmptyFilter::key() }}">No</option>
1313
</select>
1414
</div>
1515
</div>

resources/views/partials/enum-filter.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<div class="col-md-3 mb-3">
2-
<input type="hidden" id="{{ $field }}_filter_action" value="{{ \BluefynInternational\ReportEngine\BaseFeatures\Filters\EqualsFilter::key() }}"/>
2+
<input type="hidden" id="{{ $field }}_filter_action" value="{{ \AlwaysOpen\ReportEngine\BaseFeatures\Filters\EqualsFilter::key() }}"/>
33
<label class="my-1 mr-2" for="{{ $field }}_filter">{{ $label }}</label>
44
<div class="input-group mb-1">
55
<select id="{{ $field }}_filter" class="custom-select report-filter-input">

0 commit comments

Comments
 (0)