diff --git a/CHANGELOG.md b/CHANGELOG.md index f455f0a..66f94be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## 1.0.2: Updated dependencies + +* added support for PHP 7 + ## 1.0.1: Fixed Insight badge * fixed Insight badge diff --git a/LICENSE b/LICENSE index ba0bc4d..7bf1a25 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2015 Loïc Chardonnet +Copyright (c) 2015 Loïc Faugeron 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/README.md b/README.md index 7f393eb..4b66c37 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ A set of [Memio constraints](http://github.com/memio/validator) that check Install it using [Composer](https://getcomposer.org/download): - composer require memio/linter:~1.0 + composer require memio/linter:^1.0 ## Example diff --git a/composer.json b/composer.json index d31bce5..0a13b3e 100644 --- a/composer.json +++ b/composer.json @@ -7,8 +7,8 @@ "homepage": "http://memio.github.io/memio", "authors": [ { - "name": "Loïc Chardonnet", - "email": "loic.chardonnet@gmail.com", + "name": "Loïc Faugeron", + "email": "faugeron.loic@gmail.com", "homepage": "http://gnugat.github.io", "role": "Developer" } diff --git a/spec/Memio/Linter/CollectionCannotHaveNameDuplicatesSpec.php b/spec/Memio/Linter/CollectionCannotHaveNameDuplicatesSpec.php index 50abd5a..978e39c 100644 --- a/spec/Memio/Linter/CollectionCannotHaveNameDuplicatesSpec.php +++ b/spec/Memio/Linter/CollectionCannotHaveNameDuplicatesSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ConcreteObjectMethodsCannotBeAbstractSpec.php b/spec/Memio/Linter/ConcreteObjectMethodsCannotBeAbstractSpec.php index e5d6df4..a66931f 100644 --- a/spec/Memio/Linter/ConcreteObjectMethodsCannotBeAbstractSpec.php +++ b/spec/Memio/Linter/ConcreteObjectMethodsCannotBeAbstractSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ContractMethodsCanOnlyBePublicSpec.php b/spec/Memio/Linter/ContractMethodsCanOnlyBePublicSpec.php index 24a4f46..7f16838 100644 --- a/spec/Memio/Linter/ContractMethodsCanOnlyBePublicSpec.php +++ b/spec/Memio/Linter/ContractMethodsCanOnlyBePublicSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ContractMethodsCannotBeFinalSpec.php b/spec/Memio/Linter/ContractMethodsCannotBeFinalSpec.php index e9484aa..f53eb32 100644 --- a/spec/Memio/Linter/ContractMethodsCannotBeFinalSpec.php +++ b/spec/Memio/Linter/ContractMethodsCannotBeFinalSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ContractMethodsCannotBeStaticSpec.php b/spec/Memio/Linter/ContractMethodsCannotBeStaticSpec.php index 82f1558..0a9a15b 100644 --- a/spec/Memio/Linter/ContractMethodsCannotBeStaticSpec.php +++ b/spec/Memio/Linter/ContractMethodsCannotBeStaticSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ContractMethodsCannotHaveBodySpec.php b/spec/Memio/Linter/ContractMethodsCannotHaveBodySpec.php index 87c5203..9e1c041 100644 --- a/spec/Memio/Linter/ContractMethodsCannotHaveBodySpec.php +++ b/spec/Memio/Linter/ContractMethodsCannotHaveBodySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/MethodCannotBeAbstractAndHaveBodySpec.php b/spec/Memio/Linter/MethodCannotBeAbstractAndHaveBodySpec.php index 44337ef..e4e55d1 100644 --- a/spec/Memio/Linter/MethodCannotBeAbstractAndHaveBodySpec.php +++ b/spec/Memio/Linter/MethodCannotBeAbstractAndHaveBodySpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/MethodCannotBeBothAbstractAndFinalSpec.php b/spec/Memio/Linter/MethodCannotBeBothAbstractAndFinalSpec.php index 9600076..d87755b 100644 --- a/spec/Memio/Linter/MethodCannotBeBothAbstractAndFinalSpec.php +++ b/spec/Memio/Linter/MethodCannotBeBothAbstractAndFinalSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/MethodCannotBeBothAbstractAndPrivateSpec.php b/spec/Memio/Linter/MethodCannotBeBothAbstractAndPrivateSpec.php index 2d4a417..6f97c82 100644 --- a/spec/Memio/Linter/MethodCannotBeBothAbstractAndPrivateSpec.php +++ b/spec/Memio/Linter/MethodCannotBeBothAbstractAndPrivateSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/MethodCannotBeBothAbstractAndStaticSpec.php b/spec/Memio/Linter/MethodCannotBeBothAbstractAndStaticSpec.php index fbe61da..198a604 100644 --- a/spec/Memio/Linter/MethodCannotBeBothAbstractAndStaticSpec.php +++ b/spec/Memio/Linter/MethodCannotBeBothAbstractAndStaticSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/spec/Memio/Linter/ObjectArgumentCanOnlyDefaultToNullSpec.php b/spec/Memio/Linter/ObjectArgumentCanOnlyDefaultToNullSpec.php index 2d57acc..7519348 100644 --- a/spec/Memio/Linter/ObjectArgumentCanOnlyDefaultToNullSpec.php +++ b/spec/Memio/Linter/ObjectArgumentCanOnlyDefaultToNullSpec.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/CollectionCannotHaveNameDuplicates.php b/src/Memio/Linter/CollectionCannotHaveNameDuplicates.php index f4041c6..86dcaa8 100644 --- a/src/Memio/Linter/CollectionCannotHaveNameDuplicates.php +++ b/src/Memio/Linter/CollectionCannotHaveNameDuplicates.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ConcreteObjectMethodsCannotBeAbstract.php b/src/Memio/Linter/ConcreteObjectMethodsCannotBeAbstract.php index cd5a542..149a301 100644 --- a/src/Memio/Linter/ConcreteObjectMethodsCannotBeAbstract.php +++ b/src/Memio/Linter/ConcreteObjectMethodsCannotBeAbstract.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ContractMethodsCanOnlyBePublic.php b/src/Memio/Linter/ContractMethodsCanOnlyBePublic.php index 7c5b344..c480444 100644 --- a/src/Memio/Linter/ContractMethodsCanOnlyBePublic.php +++ b/src/Memio/Linter/ContractMethodsCanOnlyBePublic.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ContractMethodsCannotBeFinal.php b/src/Memio/Linter/ContractMethodsCannotBeFinal.php index 3fe5d57..33cba91 100644 --- a/src/Memio/Linter/ContractMethodsCannotBeFinal.php +++ b/src/Memio/Linter/ContractMethodsCannotBeFinal.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ContractMethodsCannotBeStatic.php b/src/Memio/Linter/ContractMethodsCannotBeStatic.php index 9de47a8..dce0bc2 100644 --- a/src/Memio/Linter/ContractMethodsCannotBeStatic.php +++ b/src/Memio/Linter/ContractMethodsCannotBeStatic.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ContractMethodsCannotHaveBody.php b/src/Memio/Linter/ContractMethodsCannotHaveBody.php index c303236..7592187 100644 --- a/src/Memio/Linter/ContractMethodsCannotHaveBody.php +++ b/src/Memio/Linter/ContractMethodsCannotHaveBody.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/MethodCannotBeAbstractAndHaveBody.php b/src/Memio/Linter/MethodCannotBeAbstractAndHaveBody.php index 85004ea..285f62b 100644 --- a/src/Memio/Linter/MethodCannotBeAbstractAndHaveBody.php +++ b/src/Memio/Linter/MethodCannotBeAbstractAndHaveBody.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/MethodCannotBeBothAbstractAndFinal.php b/src/Memio/Linter/MethodCannotBeBothAbstractAndFinal.php index 1c2bc61..47e0ee6 100644 --- a/src/Memio/Linter/MethodCannotBeBothAbstractAndFinal.php +++ b/src/Memio/Linter/MethodCannotBeBothAbstractAndFinal.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/MethodCannotBeBothAbstractAndPrivate.php b/src/Memio/Linter/MethodCannotBeBothAbstractAndPrivate.php index e882711..8c6bdc5 100644 --- a/src/Memio/Linter/MethodCannotBeBothAbstractAndPrivate.php +++ b/src/Memio/Linter/MethodCannotBeBothAbstractAndPrivate.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/MethodCannotBeBothAbstractAndStatic.php b/src/Memio/Linter/MethodCannotBeBothAbstractAndStatic.php index 4d47af2..5c1a1ca 100644 --- a/src/Memio/Linter/MethodCannotBeBothAbstractAndStatic.php +++ b/src/Memio/Linter/MethodCannotBeBothAbstractAndStatic.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. diff --git a/src/Memio/Linter/ObjectArgumentCanOnlyDefaultToNull.php b/src/Memio/Linter/ObjectArgumentCanOnlyDefaultToNull.php index d6dba4e..0e064a7 100644 --- a/src/Memio/Linter/ObjectArgumentCanOnlyDefaultToNull.php +++ b/src/Memio/Linter/ObjectArgumentCanOnlyDefaultToNull.php @@ -3,7 +3,7 @@ /* * This file is part of the memio/linter package. * - * (c) Loïc Chardonnet + * (c) Loïc Faugeron * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code.