Skip to content

Commit 4910046

Browse files
authored
Merge pull request #2 from CodelyTV/minor-fixes
* Update Composer release date. Noticed by https://www.youtube.com/watch?v=v2IjMrpZog4&lc=UgyBUuMgOfZkEeNb06x4AaABAg * Fix PhpUnit test suite name * Set `Codelyber#GREETING` constant as private in order to encapsulate it avoiding calling it form test cases
2 parents 0bead4c + 8a82618 commit 4910046

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.semver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
22
:major: 1
33
:minor: 2
4-
:patch: 0
4+
:patch: 1
55
:special: ''

composer.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "codelytv/php-bootstrap",
3-
"description": "Starting point if you want to bootstrap a project in PHP.",
3+
"description": "Starting point if you want to bootstrap a project in PHP following best practices.",
44
"type": "project",
55
"keywords": [
66
"bootstrap",
@@ -9,20 +9,20 @@
99
"TDD",
1010
"boilerplate"
1111
],
12-
"homepage": "http://codely.tv",
13-
"time": "2016-09-18",
12+
"homepage": "https://codely.tv",
13+
"time": "2018-07-18",
1414
"license": "MIT",
1515
"authors": [
1616
{
1717
"name": "Javier Ferrer",
1818
"email": "javier.ferrer@codely.tv",
19-
"homepage": "http://codely.tv",
19+
"homepage": "https://codely.tv",
2020
"role": "Developer"
2121
},
2222
{
2323
"name": "Rafa Gómez",
2424
"email": "rafa.gomez@codely.tv",
25-
"homepage": "http://codely.tv",
25+
"homepage": "https://codely.tv",
2626
"role": "Developer"
2727
}
2828
],

phpunit.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
beStrictAboutTestSize="true"
77
beStrictAboutChangesToGlobalState="true">
88
<testsuites>
9-
<testsuite name="finderKata">
9+
<testsuite name="phpBootstrap">
1010
<directory>tests</directory>
1111
</testsuite>
1212
</testsuites>

src/Codelyber.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
final class Codelyber
88
{
99
/** string */
10-
const GREETING = "CodelyTV";
10+
private const GREETING = "CodelyTV";
1111

1212
/** @var string */
1313
private $name;

0 commit comments

Comments
 (0)