Skip to content

Commit 2e900e3

Browse files
Merge pull request #10 from pamil/psr-4
Define more specific autoloading and validate "composer.json" file
2 parents 7762db5 + 9d99504 commit 2e900e3

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,5 @@ install:
1010
- composer install --prefer-dist
1111

1212
script:
13+
- composer validate --strict
1314
- vendor/bin/phpunit

composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
{
22
"name": "matthiasnoback/live-code-coverage",
3+
"description": "Generate code coverage reports on a live server",
4+
"license": "MIT",
35
"require": {
46
"php": "^5.6 || ^7.0",
57
"webmozart/assert": "^1.2",
@@ -8,7 +10,7 @@
810
},
911
"autoload": {
1012
"psr-4": {
11-
"": "src/"
13+
"LiveCodeCoverage\\": "src/LiveCodeCoverage/"
1214
}
1315
},
1416
"require-dev": {

0 commit comments

Comments
 (0)