File tree Expand file tree Collapse file tree 9 files changed +16
-32
lines changed Expand file tree Collapse file tree 9 files changed +16
-32
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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
66Adds 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.
1313You 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
2727public function cards()
2828{
Original file line number Diff line number Diff line change 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" ,
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 },
Original file line number Diff line number Diff line change 11<?php declare (strict_types=1 );
22
3- namespace IDF \HtmlCard ;
3+ namespace InteractionDesignFoundation \HtmlCard ;
44
55use Laravel \Nova \Nova ;
66use Laravel \Nova \Events \ServingNova ;
Original file line number Diff line number Diff line change 11<?php declare (strict_types=1 );
22
3- namespace IDF \HtmlCard ;
3+ namespace InteractionDesignFoundation \HtmlCard ;
44
55use Illuminate \Support \Facades \App ;
66use Laravel \Nova \Card ;
Original file line number Diff line number Diff line change 11<?php declare (strict_types=1 );
22
3- namespace IDF \HtmlCard ;
3+ namespace InteractionDesignFoundation \HtmlCard ;
44
55use Illuminate \Mail \Markdown ;
66
Original file line number Diff line number Diff line change 11<?php declare (strict_types=1 );
22
3- namespace IDF \HtmlCard ;
3+ namespace InteractionDesignFoundation \HtmlCard ;
44
55interface MarkdownConverter
66{
Original file line number Diff line number Diff line change 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 ;
66use Illuminate \Support \Facades \App ;
77
88final class CardServiceProviderTest extends TestCase
Original file line number Diff line number Diff line change 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 ;
66use Orchestra \Testbench \TestCase as OrchestraTestCase ;
77
88abstract class TestCase extends OrchestraTestCase
You can’t perform that action at this time.
0 commit comments