Skip to content

Commit 2e8a010

Browse files
committed
Rename classes/ to src/
1 parent 81054a6 commit 2e8a010

27 files changed

+10
-10
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,5 @@ before_script:
4949

5050
script:
5151
- vendor/bin/phpunit
52-
- vendor/bin/phpcs --standard=PSR2 classes/ tests/
52+
- vendor/bin/phpcs --standard=PSR2 src/ tests/
5353
- vendor/bin/phpstan analyse

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -409,12 +409,12 @@ If you like this project and feel generous donate a few Bitcoins here:
409409
[2]: https://github.com/nrk/predis
410410
[3]: http://php.net/manual/en/book.pcntl.php
411411
[4]: https://getcomposer.org
412-
[5]: https://github.com/php-lock/lock/blob/master/classes/mutex/Mutex.php
413-
[6]: https://github.com/php-lock/lock/blob/master/classes/mutex/Mutex.php#L38
414-
[7]: https://github.com/php-lock/lock/blob/master/classes/mutex/Mutex.php#L57
415-
[8]: https://github.com/php-lock/lock/blob/master/classes/util/DoubleCheckedLocking.php#L72
412+
[5]: https://github.com/php-lock/lock/blob/master/src/mutex/Mutex.php
413+
[6]: https://github.com/php-lock/lock/blob/master/src/mutex/Mutex.php#L38
414+
[7]: https://github.com/php-lock/lock/blob/master/src/mutex/Mutex.php#L57
415+
[8]: https://github.com/php-lock/lock/blob/master/src/util/DoubleCheckedLocking.php#L72
416416
[9]: https://en.wikipedia.org/wiki/Double-checked_locking
417417
[10]: https://en.wikipedia.org/wiki/Compare-and-swap
418-
[11]: https://github.com/php-lock/lock/blob/master/classes/mutex/CASMutex.php#L44
419-
[12]: https://github.com/php-lock/lock/blob/master/classes/mutex/LockMutex.php
420-
[13]: https://github.com/php-lock/lock/blob/master/classes/exception/LockReleaseException.php
418+
[11]: https://github.com/php-lock/lock/blob/master/src/mutex/CASMutex.php#L44
419+
[12]: https://github.com/php-lock/lock/blob/master/src/mutex/LockMutex.php
420+
[13]: https://github.com/php-lock/lock/blob/master/src/exception/LockReleaseException.php

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
],
3434
"autoload": {
3535
"psr-4": {
36-
"malkusch\\lock\\": "classes/"
36+
"malkusch\\lock\\": "src/"
3737
}
3838
},
3939
"autoload-dev": {
@@ -82,7 +82,7 @@
8282
]
8383
},
8484
"scripts": {
85-
"fix-cs": "vendor/bin/phpcbf --standard=PSR2 classes/ tests/"
85+
"fix-cs": "vendor/bin/phpcbf --standard=PSR2 src/ tests/"
8686
},
8787
"config": {
8888
"sort-packages": true

0 commit comments

Comments
 (0)