Ben Ramsey
67fe80dc1b
Add docblocks for classes and interface in Ramsey\Uuid\Builder namespace
2015-09-03 23:00:55 -04:00
Ben Ramsey
d5276bdba6
Update CHANGELOG for version 3.0.0-beta1
3.0.0-beta1
2015-08-31 09:09:22 -05:00
Ben Ramsey
8541ea9466
Merge branch '2.8'
...
Conflicts:
README.md
composer.json
src/Uuid.php
tests/UuidTest.php
2015-08-31 08:46:47 -05:00
Ben Ramsey
f244327de7
Change homepage to reflect new repository location (again)
...
Because I'm an idiot
2015-08-31 08:40:07 -05:00
Ben Ramsey
8a637f5b50
Change homepage to reflect the new repository location
2015-08-31 08:39:09 -05:00
Ben Ramsey
1490455432
Merge pull request #83 from frederikbosch/patch-2
...
[3.0] Removed rhumsaa locations from composer.json
2015-08-31 08:38:16 -05:00
Ben Ramsey
767a5b5f70
Bump version for 2.8.3 release
2.8.3
2015-08-31 08:34:50 -05:00
Ben Ramsey
1192fbfb60
Merge pull request #82 from frederikbosch/patch-1
...
[2.8] Remove rhumsaa from composer.json
2015-08-31 08:29:03 -05:00
Frederik Bosch
75d596d95d
Update composer.json of dev-master
...
Changed old support location to new support location.
2015-08-31 12:20:47 +02:00
Frederik Bosch
6c608cf1e9
Update composer.json
...
Just did a `composer show -i` and saw a big warning NO LONGER MAINTAINED on the ramsay/uuid package. This confused me because I was sure I switched months ago. I found out that there are still references to the old package inside the composer.json.
2015-08-31 11:09:34 +02:00
Ben Ramsey
e99347f70d
Merge pull request #77 from aztech-forks/master
...
Improve GUID support
2015-08-28 09:36:45 -05:00
Ben Ramsey
0ebc7cb3e4
Merge pull request #79 from aztech-forks/moontoast-32bits-2.8.x
...
Fix exception message assertion
2015-08-28 09:36:14 -05:00
Ben Ramsey
0206e3796b
Merge pull request #78 from aztech-forks/moontoast-32bits
...
Fix exception message assertion in tests
2015-08-28 09:36:03 -05:00
Aztech
0a04997f07
Remove message assertion -- cannot pass in both 32 and 64 bits envs
2015-08-14 23:26:59 +02:00
Aztech
4c35be716a
Remove message assertion -- cannot pass in both 32 and 64 bits envs
2015-08-14 23:26:15 +02:00
Aztech
2f6ba8da74
Fix exception message assertion
2015-08-14 23:15:31 +02:00
Aztech
8c699ecfec
Fix exception message assertion in tests
2015-08-14 23:10:23 +02:00
Aztech
896cd9c4e2
Use GUID codec in all cases as it is now endianness independant
2015-08-14 22:43:58 +02:00
Aztech
958468d95b
Detect host endianness when building codec
2015-08-14 22:24:16 +02:00
Aztech
d3535feb50
Use host dependant endianness in GUID string codec
2015-08-14 21:57:59 +02:00
Ben Ramsey
cf1776ebd6
Fix incompatible return type declaration issue
...
Scrutinizer turned up this issue, since the declared return type in
`UuidBuilderInterface` was of `Uuid` and we weren't properly importing
`\Ramsey\Uuid\Uuid` in a `use` statement.
2015-08-13 11:00:41 -05:00
Ben Ramsey
a27ab1b8e9
Merge pull request #73 from aztech-forks/master
...
Remove unnecessary conversions in BigNumberConverter
2015-08-13 11:00:31 -05:00
Thibaud Fabre
89d91a97eb
Remove unnecessary conversions in BigNumberConverter
...
Using the baseConvert method from BigNumber uses two consecutive convert operations:
- convertToBase10
- convertFromBase10
In BigNumberConverters context, we can directly call each specific method to avoid
the conversion overhead.
2015-08-13 17:44:40 +02:00
Ben Ramsey
8cf0113302
Merge pull request #72 from ramsey/scrutinizer-patch-1
...
Scrutinizer Auto-Fixes
2015-08-13 10:44:05 -05:00
Scrutinizer Auto-Fixer
f59b447603
Scrutinizer Auto-Fixes
...
This commit consists of patches automatically generated for this project on https://scrutinizer-ci.com
2015-08-13 15:32:44 +00:00
Ben Ramsey
95d84d3b08
Add Scrutinizer build configuration
2015-08-13 10:12:32 -05:00
Ben Ramsey
1c01dec0c4
Remove warning message from README for the ramsey/uuid repository
2015-08-04 11:20:55 -04:00
Ben Ramsey
41f8db4880
Update CHANGELOG for version 3.0.0-alpha3
3.0.0-alpha3
2015-07-28 15:40:04 -05:00
Ben Ramsey
0cd5e1c6f5
Merge pull request #70 from aztech-forks/master
...
Time generator improvements
2015-07-28 15:35:34 -05:00
Aztech
bbce46dabe
Add option to enable PeclUuidTimeGenerator via FeatureSet
2015-07-28 22:20:04 +02:00
Aztech
0cd74639cf
Enable use of custom TimeGenerator implementations
...
- Removes now unnecessary `timeConverter` and `timeProvider`
properties, setters, and getters in both FeatureSet and
UuidFactory as those are now exclusively used by the default
TimeGenerator
- Adds a `setTimeGenerator` method on UuidFactory to override the
default time generator
2015-07-28 22:16:29 +02:00
Ben Ramsey
b5e431e7f1
Update CHANGELOG for version 3.0.0-alpha2
...
[ci skip]
3.0.0-alpha2
2015-07-28 11:45:12 -05:00
Ben Ramsey
83367cef97
Use a medium strength generator for ircmaxell/random-lib
...
As discussed in https://github.com/ramsey/uuid/issues/56
2015-07-28 11:29:43 -05:00
Ben Ramsey
e81568ea4f
Fix parse error caused by double "new" keyword
2015-07-28 11:28:07 -05:00
Ben Ramsey
a95140c25c
Remove PeclUuidFactory in favor of the new PeclUuid*Generator
2015-07-28 11:25:07 -05:00
Ben Ramsey
963a840925
Merge pull request #68 from ramsey/pecl-generator
...
Random and time generators for pecl-uuid
2015-07-27 17:05:42 -05:00
Ben Ramsey
d88a941b8c
Fix errant docblock comment asterisk removal
2015-07-27 11:14:42 -05:00
Aztech
e2047199cd
Remove redundant method call
2015-07-27 11:14:20 -05:00
Aztech
ec3f5bbdc8
CS fix
2015-07-27 11:14:20 -05:00
Aztech
8974c76bf6
Refactor TimeGeneratorInterface
...
- Remove UuidFactory from signature
- Remove setters on UuidFactory to prevent inconsistencies (a new feature set and factory should be used instead)
- Update tests to reflect those changes
2015-07-27 11:14:20 -05:00
Ben Ramsey
b7bb2018bf
Add time generator for pecl-uuid
2015-07-27 11:14:20 -05:00
Ben Ramsey
8e5c641575
Add random generator for pecl-uuid
2015-07-27 11:14:20 -05:00
Ben Ramsey
dfbf8b8098
Abstract time generation into family of TimeGeneratorInterface classes
2015-07-27 11:14:20 -05:00
Ben Ramsey
be524d58d2
Merge pull request #67 from ramsey/php7-random-bytes-generator
...
Add RandomBytesGenerator for use with PHP 7
2015-07-24 09:39:10 -05:00
Ben Ramsey
4df546f5e4
Merge branch '2.8'
...
Conflicts:
README.md
apigen.neon
composer.json
2015-07-23 19:06:41 +00:00
Ben Ramsey
5d2f77a21d
Reset version back to dev
2015-07-23 19:01:58 +00:00
Ben Ramsey
9c1e2d34bd
Update CHANGELOG for 2.8.2 release
2.8.2
2015-07-23 19:00:41 +00:00
Ben Ramsey
5b98a8d907
Merge remote-tracking branch 'upstream/2.8'
...
Conflicts:
README.md
composer.json
2015-07-23 18:55:41 +00:00
Ben Ramsey
261eb8e347
Migrate to Travis CI's container-based infrastructure
2015-07-22 16:47:56 -05:00
Ben Ramsey
1bdc10a306
Add RandomBytesGenerator for use with PHP 7.
2015-07-22 21:34:15 +00:00