diff --git a/composer.json b/composer.json index 32480a37..eb89e68f 100644 --- a/composer.json +++ b/composer.json @@ -2,11 +2,24 @@ "name": "clue/graph", "type": "library", "description": "A mathematical graph/network library written in PHP", - "keywords": ["graph", "network", "mathematical", "vertex", "edge"], + "keywords": [ + "graph", + "network", + "mathematical", + "vertex", + "edge" + ], "homepage": "https://github.com/clue/graph", "license": "MIT", "autoload": { - "psr-4": {"Fhaculty\\Graph\\": "src/"} + "psr-4": { + "Fhaculty\\Graph\\": "src/" + } + }, + "autoload-dev": { + "psr-4": { + "Fhaculty\\Graph\\Tests\\": "tests/" + } }, "require": { "php": ">=5.3.0" diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 828ef003..8e3bc329 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,6 +1,6 @@ -./src/ - \ No newline at end of file + diff --git a/tests/Attribute/AbstractAttributeAwareTest.php b/tests/Attribute/AbstractAttributeAwareTest.php index 2a2e4dc7..2695756c 100644 --- a/tests/Attribute/AbstractAttributeAwareTest.php +++ b/tests/Attribute/AbstractAttributeAwareTest.php @@ -1,6 +1,10 @@