Skip to content

Commit ed08201

Browse files
committed
leftovers from first copy
1 parent 72de692 commit ed08201

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
# AmpacheDiscogs-PHP
2-
Simple Discgos query library exported from Ampache
2+
3+
Simple Discogs query library exported from Ampache

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"name": "lachlan-00/discogs",
2+
"name": "ampache/php-discogs-api",
33
"type": "library",
44
"description": "A PHP library for accessing the Discogs API",
55
"keywords": ["discogs", "library", "php", "api"],
6-
"homepage": "https://github.com/lachlan-00/DiscogsPHP",
6+
"homepage": "https://github.com/ampache/php-discogs-api",
77
"license": "MIT",
88
"authors": [
99
{
@@ -49,7 +49,7 @@
4949
},
5050
"autoload": {
5151
"psr-0": {
52-
"Discogs": "src/"
52+
"AmpacheDiscogs": "src/"
5353
}
5454
}
5555
}
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
<?php
2+
3+
namespace AmpacheDiscogs\Tests;
4+
5+
use AmpacheDiscogs\Discogs;
6+
use PHPUnit\Framework\TestCase;
7+
8+
class AmpacheDiscogsTest extends TestCase
9+
{
10+
public function testIsDiscogs(): void
11+
{
12+
static::assertTrue(
13+
new Discogs(
14+
'user',
15+
'password'
16+
) instanceof Discogs
17+
);
18+
}
19+
}

0 commit comments

Comments
 (0)