Skip to content

Commit

Permalink
Moved PhlyTest autoload configuration to autoload-dev
Browse files Browse the repository at this point in the history
- Per phly/http#11 -- test namespace only needs autoload rules in development.
  • Loading branch information
weierophinney committed Oct 13, 2014
1 parent cad337c commit bee8a2d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 1 deletion.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

All notable changes to this project will be documented in this file, in reverse chronological order by release..

## TBD - TBD

### Added

- Nothing.

### Deprecated

- Nothing.

### Removed

- Nothing.

### Fixed

- Updated `composer.json` to push `PhlyTest\\Conduit\\` namespace autoloading to the `autoload-dev` section (meaning no entry will be added when generating production autoloader rules).

## 0.6.1 - 2014-10-13

### Added
Expand Down
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,11 @@
},
"autoload": {
"psr-4": {
"Phly\\Conduit\\": "src/",
"Phly\\Conduit\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PhlyTest\\Conduit\\": "test/"
}
}
Expand Down

0 comments on commit bee8a2d

Please sign in to comment.