Skip to content

Commit f242b21

Browse files
committed
Change namespace
1 parent 3d7a192 commit f242b21

File tree

9 files changed

+16
-32
lines changed

9 files changed

+16
-32
lines changed

.github/workflows/backward-compatibility-check.yml

Lines changed: 0 additions & 16 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Nova HTML Card
22

3-
[![Latest Stable Version](https://poser.pugx.org/idf/nova-html-card/v/stable)](https://packagist.org/packages/idf/nova-html-card)
4-
[![Total Downloads](https://poser.pugx.org/idf/nova-html-card/downloads)](https://packagist.org/packages/idf/nova-html-card)
3+
[![Latest Stable Version](https://poser.pugx.org/interaction-design-foundation/nova-html-card/v/stable)](https://packagist.org/packages/interaction-design-foundation/nova-html-card)
4+
[![Total Downloads](https://poser.pugx.org/interaction-design-foundation/nova-html-card/downloads)](https://packagist.org/packages/interaction-design-foundation/nova-html-card)
55

66
Adds a card to the Laravel Nova dashboard with any arbitrary HTML content.
77

@@ -13,7 +13,7 @@ Adds a card to the Laravel Nova dashboard with any arbitrary HTML content.
1313
You can install the package in to a Laravel app that uses [Nova](https://nova.laravel.com) via composer:
1414

1515
```bash
16-
composer require idf/nova-html-card
16+
composer require interaction-design-foundation/nova-html-card
1717
```
1818

1919

@@ -22,7 +22,7 @@ composer require idf/nova-html-card
2222
[Register your new card](https://nova.laravel.com/docs/2.0/customization/cards.html#registering-cards).
2323

2424
```php
25-
use IDF\HtmlCard\HtmlCard;
25+
use InteractionDesignFoundation\HtmlCard\HtmlCard;
2626

2727
public function cards()
2828
{

composer.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "idf/nova-html-card",
2+
"name": "interaction-design-foundation/nova-html-card",
33
"description": "A Laravel Nova card to display arbitrary HTML content",
44
"keywords": [
55
"laravel",
@@ -26,18 +26,18 @@
2626
],
2727
"autoload": {
2828
"psr-4": {
29-
"IDF\\HtmlCard\\": "src/"
29+
"InteractionDesignFoundation\\HtmlCard\\": "src/"
3030
}
3131
},
3232
"autoload-dev": {
3333
"psr-4": {
34-
"IDF\\HtmlCard\\Tests\\": "tests"
34+
"InteractionDesignFoundation\\HtmlCard\\Tests\\": "tests"
3535
}
3636
},
3737
"extra": {
3838
"laravel": {
3939
"providers": [
40-
"IDF\\HtmlCard\\CardServiceProvider"
40+
"InteractionDesignFoundation\\HtmlCard\\CardServiceProvider"
4141
]
4242
}
4343
},

src/CardServiceProvider.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard;
3+
namespace InteractionDesignFoundation\HtmlCard;
44

55
use Laravel\Nova\Nova;
66
use Laravel\Nova\Events\ServingNova;

src/HtmlCard.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard;
3+
namespace InteractionDesignFoundation\HtmlCard;
44

55
use Illuminate\Support\Facades\App;
66
use Laravel\Nova\Card;

src/LaravelMarkdownConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard;
3+
namespace InteractionDesignFoundation\HtmlCard;
44

55
use Illuminate\Mail\Markdown;
66

src/MarkdownConverter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard;
3+
namespace InteractionDesignFoundation\HtmlCard;
44

55
interface MarkdownConverter
66
{

tests/CardServiceProviderTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard\Tests;
3+
namespace InteractionDesignFoundation\HtmlCard\Tests;
44

5-
use IDF\HtmlCard\MarkdownConverter;
5+
use InteractionDesignFoundation\HtmlCard\MarkdownConverter;
66
use Illuminate\Support\Facades\App;
77

88
final class CardServiceProviderTest extends TestCase

tests/TestCase.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php declare(strict_types=1);
22

3-
namespace IDF\HtmlCard\Tests;
3+
namespace InteractionDesignFoundation\HtmlCard\Tests;
44

5-
use IDF\HtmlCard\CardServiceProvider;
5+
use InteractionDesignFoundation\HtmlCard\CardServiceProvider;
66
use Orchestra\Testbench\TestCase as OrchestraTestCase;
77

88
abstract class TestCase extends OrchestraTestCase

0 commit comments

Comments
 (0)