Skip to content

Commit 084b138

Browse files
committed
Merge pull request #3 from temp/remove-assert
Remove assert
2 parents 25a1511 + ce14c29 commit 084b138

18 files changed

+360
-16
lines changed

.scrutinizer.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
inherit: true
2+
imports:
3+
- php
4+
tools:
5+
external_code_coverage:
6+
timeout: 600 # Timeout in seconds.

.travis.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
language: php
2+
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 7
7+
- hhvm
8+
9+
before_script: composer install
10+
11+
script: vendor/bin/phpunit -c tests --coverage-clover=coverage.clover
12+
13+
after_script:
14+
- sh -c 'if [ $(phpenv version-name) = "5.6" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover coverage.clover; fi;'

LICENSE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012-2013 brainbits GmbH (http://www.brainbits.net)
1+
Copyright (c) 2012-2016 brainbits GmbH (http://www.brainbits.net)
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy
44
of this software and associated documentation files (the "Software"), to deal
@@ -16,4 +16,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1616
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1717
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
1818
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19-
THE SOFTWARE.
19+
THE SOFTWARE.

composer.json

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,28 @@
1212
{
1313
"name": "Phillip Look",
1414
"email": "plook@brainbits.net"
15+
},
16+
{
17+
"name": "Stephan Wentz",
18+
"email": "swentz@brainbits.net"
1519
}
1620
],
1721
"require": {
18-
"php": ">=5.4.0",
19-
"brainbits/transcoder": ">=1.1.0",
20-
"symfony/framework-bundle": ">=2.1.0"
22+
"php": ">=5.5.0",
23+
"brainbits/transcoder": "~2.0"
24+
},
25+
"require-dev": {
26+
"phpunit/phpunit": "~4.5",
27+
"symfony/config": "^2.3",
28+
"symfony/dependency-injection": "^2.3",
29+
"symfony/http-kernel": "^2.3",
30+
"matthiasnoback/symfony-config-test": "^1.4",
31+
"matthiasnoback/symfony-dependency-injection-test": "^0.7.6"
2132
},
2233
"autoload": {
23-
"psr-0": { "Brainbits": "src/" }
34+
"psr-4": { "Brainbits\\TranscoderBundle\\": "src/" }
2435
},
25-
"minimum-stability": "stable"
36+
"autoload-dev": {
37+
"psr-4": { "Brainbits\\TranscoderBundle\\Tests\\": "tests/" }
38+
}
2639
}

src/Brainbits/TranscoderBundle/BrainbitsTranscoderBundle.php renamed to src/BrainbitsTranscoderBundle.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
2-
/**
3-
* This file is part of the brainbits transcoderbundle package.
2+
/*
3+
* This file is part of the brainbits transcoder bundle package.
44
*
5-
* (c) 2012-2013 brainbits GmbH (http://www.brainbits.net)
5+
* (c) brainbits GmbH
66
*
77
* For the full copyright and license information, please view the LICENSE
88
* file that was distributed with this source code.

src/Brainbits/TranscoderBundle/DependencyInjection/BrainbitsTranscoderExtension.php renamed to src/DependencyInjection/BrainbitsTranscoderExtension.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
2-
/**
3-
* This file is part of the brainbits transcoderbundle package.
2+
3+
/*
4+
* This file is part of the brainbits transcoder bundle package.
45
*
5-
* (c) 2012-2013 brainbits GmbH (http://www.brainbits.net)
6+
* (c) brainbits GmbH
67
*
78
* For the full copyright and license information, please view the LICENSE
89
* file that was distributed with this source code.

src/Brainbits/TranscoderBundle/DependencyInjection/Compiler/AddDecoderPass.php renamed to src/DependencyInjection/Compiler/AddDecoderPass.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the brainbits transcoder bundle package.
5+
*
6+
* (c) brainbits GmbH
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Brainbits\TranscoderBundle\DependencyInjection\Compiler;
413

514
use Symfony\Component\DependencyInjection\ContainerBuilder;

src/Brainbits/TranscoderBundle/DependencyInjection/Compiler/AddEncoderPass.php renamed to src/DependencyInjection/Compiler/AddEncoderPass.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the brainbits transcoder bundle package.
5+
*
6+
* (c) brainbits GmbH
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
namespace Brainbits\TranscoderBundle\DependencyInjection\Compiler;
413

514
use Symfony\Component\DependencyInjection\ContainerBuilder;

src/Brainbits/TranscoderBundle/DependencyInjection/Configuration.php renamed to src/DependencyInjection/Configuration.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
<?php
2-
/**
3-
* This file is part of the brainbits transcoderbundle package.
2+
3+
/*
4+
* This file is part of the brainbits transcoder bundle package.
45
*
5-
* (c) 2012-2013 brainbits GmbH (http://www.brainbits.net)
6+
* (c) brainbits GmbH
67
*
78
* For the full copyright and license information, please view the LICENSE
89
* file that was distributed with this source code.

src/Brainbits/TranscoderBundle/Resources/config/decoders.xml renamed to src/Resources/config/decoders.xml

File renamed without changes.

0 commit comments

Comments
 (0)