Skip to content

Commit fc5eb62

Browse files
committed
Merge pull request #714 from skymeyer/psr4
Deprecating PSR-0 in favor of PSR-4
2 parents 4444547 + ef29b2b commit fc5eb62

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

changes.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
CHANGES
22

3+
2014-10-31
4+
- Adding PSR-4 autoloading support
5+
36
2014-10-22
47
- Added Util::convertDateTimeObject to Util class to easily convert \DateTime objects to required format #708
58

composer.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@
2727
"monolog/monolog": "Logging request"
2828
},
2929
"autoload": {
30-
"psr-0": {
31-
"Elastica": "lib/",
32-
"Elastica\\Test": "test/lib/"
30+
"psr-4": {
31+
"Elastica\\": "lib/Elastica/",
32+
"Elastica\\Test\\": "test/lib/Elastica/Test/"
3333
}
3434
},
3535
"extra": {

0 commit comments

Comments
 (0)