Skip to content

Commit 04720e9

Browse files
committed
Fix #586, fix #588 Allow test suite classes to be autoloaded in a non-dev install
Resolves issue with copy/pasting the samples from the docs
1 parent 4d735b6 commit 04720e9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [3.x - Unreleased] - 2023-xx-xx
44

5+
## [3.12.1] - 2023-12-02
6+
### Fixed
7+
- Restored ability to copy/paste the samples from the docs into a non-dev installation
8+
59
## [3.12.0] - 2023-07-30
610
### Changed
711
- Improved efficiency in packing
@@ -499,8 +503,9 @@ Initial release
499503
- Experimental code to get a feel for how calculations can best be implemented
500504
- Only works if all items fit into a single box (so not production ready at all)
501505

502-
[3.x - Unreleased]: https://github.com/dvdoug/BoxPacker/compare/3.12.0...3.x
506+
[3.x - Unreleased]: https://github.com/dvdoug/BoxPacker/compare/3.12.1...3.x
503507

508+
[3.12.1]: https://github.com/dvdoug/BoxPacker/compare/3.12.0...3.12.1
504509
[3.12.0]: https://github.com/dvdoug/BoxPacker/compare/3.11.0...3.12.0
505510
[3.11.0]: https://github.com/dvdoug/BoxPacker/compare/3.10.0...3.11.0
506511
[3.10.0]: https://github.com/dvdoug/BoxPacker/compare/3.9.4...3.10.0

composer.json

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -33,12 +33,7 @@
3333
},
3434
"autoload": {
3535
"psr-4": {
36-
"DVDoug\\BoxPacker\\": "src/"
37-
}
38-
},
39-
"autoload-dev": {
40-
"psr-4": {
41-
"DVDoug\\BoxPacker\\": "tests/"
36+
"DVDoug\\BoxPacker\\": ["src/", "tests/"]
4237
}
4338
}
4439
}

0 commit comments

Comments
 (0)