Skip to content
This repository has been archived by the owner on Jul 22, 2021. It is now read-only.

Commit

Permalink
Composer: update structure
Browse files Browse the repository at this point in the history
  • Loading branch information
Vrtak-CZ committed Jan 3, 2016
1 parent 33584ee commit 7418b97
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .gitattributes
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
tests export-ignore
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
vendor
bin
composer.lock
vendor
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ install:
- composer install --no-interaction --prefer-source

script:
- vendor/bin/phpunit --configuration tests/phpunit.xml tests
- bin/phpunit --configuration tests/phpunit.xml tests
36 changes: 22 additions & 14 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,8 @@
}
],
"support": {
"issues": "https://github.com/pavelkucera/monolog-extensions/issues"
},
"require": {
"php": "~5.6|~7.0",
"monolog/monolog": "~1.0",
"tracy/tracy": "~2.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
"issues": "https://github.com/nella/monolog-tracy/issues",
"source": "https://github.com/nella/monolog-tracy"
},
"autoload": {
"psr-4": {
Expand All @@ -37,9 +30,24 @@
"Nella\\Monolog\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
"require": {
"php": "~5.6|~7.0",
"monolog/monolog": "~1.0",
"tracy/tracy": "~2.3.0"
},
"require-dev": {
"phpunit/phpunit": "~4.1"
},
"config": {
"bin-dir": "bin"
},
"archive": {
"exclude": [
".gitattributes",
".gitignore",
"/tests"
]
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 7418b97

Please sign in to comment.