diff --git a/LICENSE b/LICENSE index fcea456..4b06bf7 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2012-2014 Ben Ramsey +Copyright (c) 2012-2015 Ben Ramsey Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/composer.json b/composer.json index ed3a114..3ccdf23 100644 --- a/composer.json +++ b/composer.json @@ -9,7 +9,7 @@ { "name": "Ben Ramsey", "email": "ben@benramsey.com", - "homepage": "http://benramsey.com" + "homepage": "https://benramsey.com" }, { "name": "Marijn Huizendveld", diff --git a/src/Builder/DefaultUuidBuilder.php b/src/Builder/DefaultUuidBuilder.php index b6e2282..b92a36e 100644 --- a/src/Builder/DefaultUuidBuilder.php +++ b/src/Builder/DefaultUuidBuilder.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Builder; diff --git a/src/Builder/DegradedUuidBuilder.php b/src/Builder/DegradedUuidBuilder.php index 610f821..c171956 100644 --- a/src/Builder/DegradedUuidBuilder.php +++ b/src/Builder/DegradedUuidBuilder.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Builder; diff --git a/src/Codec/GuidStringCodec.php b/src/Codec/GuidStringCodec.php index 9619bf1..67b86ad 100644 --- a/src/Codec/GuidStringCodec.php +++ b/src/Codec/GuidStringCodec.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Codec; diff --git a/src/Codec/StringCodec.php b/src/Codec/StringCodec.php index 26f847b..cac8845 100644 --- a/src/Codec/StringCodec.php +++ b/src/Codec/StringCodec.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Codec; diff --git a/src/CodecInterface.php b/src/CodecInterface.php index ea5de36..218df42 100644 --- a/src/CodecInterface.php +++ b/src/CodecInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/Converter/Number/BigNumberConverter.php b/src/Converter/Number/BigNumberConverter.php index 17a76ff..f84b645 100644 --- a/src/Converter/Number/BigNumberConverter.php +++ b/src/Converter/Number/BigNumberConverter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter\Number; diff --git a/src/Converter/Number/DegradedNumberConverter.php b/src/Converter/Number/DegradedNumberConverter.php index 6903b1e..76a2e3a 100644 --- a/src/Converter/Number/DegradedNumberConverter.php +++ b/src/Converter/Number/DegradedNumberConverter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter\Number; diff --git a/src/Converter/NumberConverterInterface.php b/src/Converter/NumberConverterInterface.php index 218035c..c722439 100644 --- a/src/Converter/NumberConverterInterface.php +++ b/src/Converter/NumberConverterInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter; diff --git a/src/Converter/Time/BigNumberTimeConverter.php b/src/Converter/Time/BigNumberTimeConverter.php index 7a8bd3b..e0bd6e6 100644 --- a/src/Converter/Time/BigNumberTimeConverter.php +++ b/src/Converter/Time/BigNumberTimeConverter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter\Time; diff --git a/src/Converter/Time/DegradedTimeConverter.php b/src/Converter/Time/DegradedTimeConverter.php index b7a96d7..90980ef 100644 --- a/src/Converter/Time/DegradedTimeConverter.php +++ b/src/Converter/Time/DegradedTimeConverter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter\Time; diff --git a/src/Converter/Time/PhpTimeConverter.php b/src/Converter/Time/PhpTimeConverter.php index ea6de25..7571ca3 100644 --- a/src/Converter/Time/PhpTimeConverter.php +++ b/src/Converter/Time/PhpTimeConverter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter\Time; diff --git a/src/Converter/TimeConverterInterface.php b/src/Converter/TimeConverterInterface.php index ece801e..2223a61 100644 --- a/src/Converter/TimeConverterInterface.php +++ b/src/Converter/TimeConverterInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Converter; diff --git a/src/DegradedUuid.php b/src/DegradedUuid.php index 0783edc..5a7c6c9 100644 --- a/src/DegradedUuid.php +++ b/src/DegradedUuid.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/Exception/UnsatisfiedDependencyException.php b/src/Exception/UnsatisfiedDependencyException.php index a681803..8b5d5d0 100644 --- a/src/Exception/UnsatisfiedDependencyException.php +++ b/src/Exception/UnsatisfiedDependencyException.php @@ -1,12 +1,15 @@ + * @copyright Copyright (c) Ben Ramsey * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub */ namespace Ramsey\Uuid\Exception; diff --git a/src/Exception/UnsupportedOperationException.php b/src/Exception/UnsupportedOperationException.php index ff76dba..b371b68 100644 --- a/src/Exception/UnsupportedOperationException.php +++ b/src/Exception/UnsupportedOperationException.php @@ -1,12 +1,15 @@ + * @copyright Copyright (c) Ben Ramsey * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub */ namespace Ramsey\Uuid\Exception; diff --git a/src/FeatureSet.php b/src/FeatureSet.php index 4191619..2a411b7 100644 --- a/src/FeatureSet.php +++ b/src/FeatureSet.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/Generator/CombGenerator.php b/src/Generator/CombGenerator.php index cad998d..b2392d9 100644 --- a/src/Generator/CombGenerator.php +++ b/src/Generator/CombGenerator.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Generator; diff --git a/src/Generator/MtRandGenerator.php b/src/Generator/MtRandGenerator.php index 679a4d9..b1e7ca8 100644 --- a/src/Generator/MtRandGenerator.php +++ b/src/Generator/MtRandGenerator.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Generator; diff --git a/src/Generator/OpenSslGenerator.php b/src/Generator/OpenSslGenerator.php index c48b88e..1200220 100644 --- a/src/Generator/OpenSslGenerator.php +++ b/src/Generator/OpenSslGenerator.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Generator; diff --git a/src/Generator/RandomLibAdapter.php b/src/Generator/RandomLibAdapter.php index 922a76d..2bf4524 100644 --- a/src/Generator/RandomLibAdapter.php +++ b/src/Generator/RandomLibAdapter.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Generator; diff --git a/src/PeclUuidFactory.php b/src/PeclUuidFactory.php index ff7c115..4e93ceb 100644 --- a/src/PeclUuidFactory.php +++ b/src/PeclUuidFactory.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/Provider/Node/FallbackNodeProvider.php b/src/Provider/Node/FallbackNodeProvider.php index 6b708d9..6340c1f 100644 --- a/src/Provider/Node/FallbackNodeProvider.php +++ b/src/Provider/Node/FallbackNodeProvider.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider\Node; diff --git a/src/Provider/Node/RandomNodeProvider.php b/src/Provider/Node/RandomNodeProvider.php index 89ac825..8d8c0d5 100644 --- a/src/Provider/Node/RandomNodeProvider.php +++ b/src/Provider/Node/RandomNodeProvider.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider\Node; diff --git a/src/Provider/Node/SystemNodeProvider.php b/src/Provider/Node/SystemNodeProvider.php index cb96595..3f10294 100644 --- a/src/Provider/Node/SystemNodeProvider.php +++ b/src/Provider/Node/SystemNodeProvider.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider\Node; diff --git a/src/Provider/NodeProviderInterface.php b/src/Provider/NodeProviderInterface.php index a06ea63..5dc842f 100644 --- a/src/Provider/NodeProviderInterface.php +++ b/src/Provider/NodeProviderInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider; diff --git a/src/Provider/Time/FixedTimeProvider.php b/src/Provider/Time/FixedTimeProvider.php index 6b65388..8b43859 100644 --- a/src/Provider/Time/FixedTimeProvider.php +++ b/src/Provider/Time/FixedTimeProvider.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider\Time; diff --git a/src/Provider/Time/SystemTimeProvider.php b/src/Provider/Time/SystemTimeProvider.php index fe54e2d..b1b9f5f 100644 --- a/src/Provider/Time/SystemTimeProvider.php +++ b/src/Provider/Time/SystemTimeProvider.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider\Time; diff --git a/src/Provider/TimeProviderInterface.php b/src/Provider/TimeProviderInterface.php index 0bd9642..84b38d8 100644 --- a/src/Provider/TimeProviderInterface.php +++ b/src/Provider/TimeProviderInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid\Provider; diff --git a/src/RandomGeneratorFactory.php b/src/RandomGeneratorFactory.php index 7ba61cd..d0331f3 100644 --- a/src/RandomGeneratorFactory.php +++ b/src/RandomGeneratorFactory.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/RandomGeneratorInterface.php b/src/RandomGeneratorInterface.php index bd6ea2a..029b00d 100644 --- a/src/RandomGeneratorInterface.php +++ b/src/RandomGeneratorInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/Uuid.php b/src/Uuid.php index afda6a2..cdc6bf7 100644 --- a/src/Uuid.php +++ b/src/Uuid.php @@ -1,12 +1,15 @@ + * @copyright Copyright (c) Ben Ramsey * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub */ namespace Ramsey\Uuid; diff --git a/src/UuidBuilder.php b/src/UuidBuilder.php index ec99e70..0e61e87 100644 --- a/src/UuidBuilder.php +++ b/src/UuidBuilder.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/UuidFactory.php b/src/UuidFactory.php index 25d2478..e0ad7d4 100644 --- a/src/UuidFactory.php +++ b/src/UuidFactory.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/UuidFactoryInterface.php b/src/UuidFactoryInterface.php index 0f1ce8d..7f531e8 100644 --- a/src/UuidFactoryInterface.php +++ b/src/UuidFactoryInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid; diff --git a/src/UuidInterface.php b/src/UuidInterface.php index aa05c75..631b9a3 100644 --- a/src/UuidInterface.php +++ b/src/UuidInterface.php @@ -1,4 +1,16 @@ + * @license http://opensource.org/licenses/MIT MIT + * @link https://benramsey.com/projects/ramsey-uuid/ Documentation + * @link https://packagist.org/packages/ramsey/uuid Packagist + * @link https://github.com/ramsey/uuid GitHub + */ namespace Ramsey\Uuid;