Skip to content

Commit

Permalink
No longer support php 5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
juliendufresne committed Aug 9, 2015
1 parent 3b013fd commit ed98eb8
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 8 deletions.
1 change: 0 additions & 1 deletion .php_cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ return Symfony\CS\Config\Config::create()
'-phpdoc_no_empty_return',
'align_double_arrow',
'align_equals',
'long_array_syntax',
'multiline_spaces_before_semicolon',
'ordered_use',
'strict',
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ sudo: false
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
}
],
"require": {
"php": ">=5.3.3"
"php": ">=5.4"
},
"require-dev": {
"fabpot/php-cs-fixer": "^1.8.1",
Expand Down
4 changes: 2 additions & 2 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions tests/ClassUtilsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace PhpDDDTests\Utils\Tests;
namespace PhpDDD\Utils\Tests;

use Exception;
use PhpDDD\Utils\ClassUtils;
Expand Down Expand Up @@ -58,7 +58,7 @@ public function testGetShortName($class, $expectedShortName)
public function getCanonicalNameProvider()
{
return array(
array(new self(), 'php_ddd_tests.utils.class_utils_test'),
array(new self(), 'php_ddd.utils.tests.class_utils_test'),
array(new stdClass(), 'std_class'),
array('MyNamespace\\Sub\\FooBar', 'my_namespace.sub.foo_bar'),
array(null, null),
Expand Down
2 changes: 1 addition & 1 deletion tests/StringUtilsTest.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace PhpDDDTests\Utils\Tests;
namespace PhpDDD\Utils\Tests;

use Exception;
use PhpDDD\Utils\StringUtils;
Expand Down

0 comments on commit ed98eb8

Please sign in to comment.