Skip to content

Commit 0b37452

Browse files
Rename package (#5)
* Added WorkbenchServiceProvider to handle routes and views in the workbench app directory. Updated the package description in composer.json to reflect the purpose of the package. * Bump anothrNick/github-tag-action from 1.67.0 to 1.69.0 by @dependabot in #2. The changes were made to update the dependency on anothrNick/github-tag-action to a newer version. * Refactored package namespace from Fuelviews\LaravelParameterTagging to Fuelviews\ParameterTagging to align with Laravel best practices. * Refactored README.md and composer.json to improve package information and add dependencies. * Refactored README.md and composer.json to improve package information and add dependencies.
1 parent 31502fc commit 0b37452

23 files changed

+10077
-235
lines changed

.github/FUNDING.yml

-1
This file was deleted.

.github/funding.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
github: Fuelviews
1+
github: Fuelviews

.gitignore

+12-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
.idea
2+
.phpunit.cache
3+
build
4+
composer.lock
5+
coverage
6+
docs
7+
phpunit.xml
8+
phpstan.neon
9+
testbench.yaml
10+
vendor
11+
node_modules
112
/.phpunit.cache
213
/node_modules
314
/public/hot
@@ -19,4 +30,4 @@ yarn-error.log
1930
.user.ini
2031
php.ini
2132
error_log
22-
.DS_Store
33+
.DS_Store

.idea/.gitignore

-8
This file was deleted.

.idea/blade.xml

-119
This file was deleted.

.idea/laravel-idea-personal.xml

-10
This file was deleted.

.idea/laravel-idea.xml

-6
This file was deleted.

.idea/laravel-middleware.iml

-11
This file was deleted.

.idea/misc.xml

-12
This file was deleted.

.idea/modules.xml

-8
This file was deleted.

.idea/php.xml

-30
This file was deleted.

.idea/vcs.xml

-6
This file was deleted.

CHANGELOG.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,24 +4,24 @@ All notable changes to `laravel-navigation` will be documented in this file.
44

55
## v0.0.2 - 2024-06-05
66

7-
**Full Changelog**: https://github.com/fuelviews/laravel-middleware/compare/v0.0.1...v0.0.2
7+
**Full Changelog**: https://github.com/fuelviews/laravel-parameter-tagging/compare/v0.0.1...v0.0.2
88

99
## v0.0.1 - 2024-06-05
1010

1111
### What's Changed
1212

13-
* Bump anothrNick/github-tag-action from 1.67.0 to 1.69.0 by @dependabot in https://github.com/fuelviews/laravel-middleware/pull/2
13+
* Bump anothrNick/github-tag-action from 1.67.0 to 1.69.0 by @dependabot in https://github.com/fuelviews/laravel-parameter-tagging/pull/2
1414

1515
### New Contributors
1616

17-
* @dependabot made their first contribution in https://github.com/fuelviews/laravel-middleware/pull/2
17+
* @dependabot made their first contribution in https://github.com/fuelviews/laravel-parameter-tagging/pull/2
1818

19-
**Full Changelog**: https://github.com/fuelviews/laravel-middleware/commits/v0.0.1
19+
**Full Changelog**: https://github.com/fuelviews/laravel-parameter-tagging/commits/v0.0.1
2020

2121
## v1.0.0 - 2024-06-05
2222

23-
**Full Changelog**: https://github.com/fuelviews/laravel-middleware/commits/v1.0.0
23+
**Full Changelog**: https://github.com/fuelviews/laravel-parameter-tagging/commits/v1.0.0
2424

2525
## v.0.0.1 - 2024-06-05
2626

27-
**Full Changelog**: https://github.com/fuelviews/laravel-middleware/commits/v.0.0.1
27+
**Full Changelog**: https://github.com/fuelviews/laravel-parameter-tagging/commits/v.0.0.1

README.md

+12-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
1-
# Laravel Middleware Package
1+
# Laravel Parameter Tagging Package
22

3-
This package provides middleware for handling Google Ads `gclid` and UTM query parameters in Laravel applications. The middleware sets these parameters as cookies and stores them in the session.
3+
[![Latest Version on Packagist](https://img.shields.io/packagist/v/fuelviews/laravel-parameter-tagging.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-parameter-tagging)
4+
[![GitHub Tests Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-robots-txt/run-tests.yml?branch=main&label=tests&style=flat-square)](https://github.com/fuelviews/laravel-parameter-tagging/actions?query=workflow%3Arun-tests+branch%3Amain)
5+
[![GitHub Code Style Action Status](https://img.shields.io/github/actions/workflow/status/fuelviews/laravel-parameter-tagging/fix-php-code-style-issues.yml?branch=main&label=code%20style&style=flat-square)](https://github.com/fuelviews/laravel-parameter-tagging/actions?query=workflow%3A"Fix+PHP+code+style+issues"+branch%3Amain)
6+
[![Total Downloads](https://img.shields.io/packagist/dt/fuelviews/laravel-parameter-tagging.svg?style=flat-square)](https://packagist.org/packages/fuelviews/laravel-parameter-tagging)
7+
8+
9+
This package provides middleware for handling `gclid` and `utm` query parameters in laravel applications.
410

511
## Installation
612

@@ -9,7 +15,7 @@ This package provides middleware for handling Google Ads `gclid` and UTM query p
915
You can install the package via Composer:
1016

1117
```bash
12-
composer require fuelviews/laravel-middleware
18+
composer require fuelviews/laravel-parameter-tagging
1319
```
1420

1521
#### Step 2: Register Middleware
@@ -19,14 +25,15 @@ Register middleware in your app/Http/Kernel.php file.
1925
```php
2026
// GTM tracking...
2127
protected $middleware = [
28+
\Illuminate\Session\Middleware\StartSession::class,
2229
\Spatie\GoogleTagManager\GoogleTagManagerMiddleware::class,
2330
];
2431

2532
// Query params tracking...
2633
protected $middlewareGroups = [
2734
'web' => [
28-
\Fuelviews\LaravelMiddleware\Middleware\HandleGclid::class,
29-
\Fuelviews\LaravelMiddleware\Middleware\HandleUtm::class,
35+
\Fuelviews\ParameterTagging\Http\Middleware\HandleGclid::class,
36+
\Fuelviews\ParameterTagging\Http\Middleware\HandleUtm::class,
3037
],
3138
];
3239
```

0 commit comments

Comments
 (0)