mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-07 06:55:25 +02:00
Merge branch 'develop-olympus' into develop
# By Igor Wiedler (1) and others * develop-olympus: [ticket/11671] Update composer.lock [ticket/11671] Add phing as a dependency and upgrade deps [ticket/11668] Move lint test to the end for travis Conflicts: phpBB/composer.lock
This commit is contained in:
commit
fd10d97cb1
@ -12,6 +12,7 @@
|
|||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fabpot/goutte": "v0.1.0",
|
"fabpot/goutte": "v0.1.0",
|
||||||
"phpunit/dbunit": "1.2.*",
|
"phpunit/dbunit": "1.2.*",
|
||||||
"phpunit/phpunit": "3.7.*"
|
"phpunit/phpunit": "3.7.*",
|
||||||
|
"phing/phing": "2.4.*"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
54
phpBB/composer.lock
generated
54
phpBB/composer.lock
generated
@ -3,7 +3,7 @@
|
|||||||
"This file locks the dependencies of your project to a known state",
|
"This file locks the dependencies of your project to a known state",
|
||||||
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
|
"Read more about it at http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file"
|
||||||
],
|
],
|
||||||
"hash": "e4a4f4848a7201d7e044446001afda29",
|
"hash": "6e6125b88160e28568edcb9fd007abed",
|
||||||
"packages": [
|
"packages": [
|
||||||
{
|
{
|
||||||
"name": "symfony/config",
|
"name": "symfony/config",
|
||||||
@ -541,6 +541,58 @@
|
|||||||
],
|
],
|
||||||
"time": "2012-12-19 23:06:35"
|
"time": "2012-12-19 23:06:35"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"name": "phing/phing",
|
||||||
|
"version": "2.4.14",
|
||||||
|
"source": {
|
||||||
|
"type": "git",
|
||||||
|
"url": "https://github.com/phingofficial/phing",
|
||||||
|
"reference": "2.4.14"
|
||||||
|
},
|
||||||
|
"dist": {
|
||||||
|
"type": "zip",
|
||||||
|
"url": "https://github.com/phingofficial/phing/archive/2.4.14.zip",
|
||||||
|
"reference": "2.4.14",
|
||||||
|
"shasum": ""
|
||||||
|
},
|
||||||
|
"require": {
|
||||||
|
"php": ">=5.2.0"
|
||||||
|
},
|
||||||
|
"bin": [
|
||||||
|
"bin/phing"
|
||||||
|
],
|
||||||
|
"type": "library",
|
||||||
|
"autoload": {
|
||||||
|
"classmap": [
|
||||||
|
"classes/phing/"
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"notification-url": "https://packagist.org/downloads/",
|
||||||
|
"include-path": [
|
||||||
|
"classes"
|
||||||
|
],
|
||||||
|
"license": [
|
||||||
|
"LGPL3"
|
||||||
|
],
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Michiel Rook",
|
||||||
|
"email": "mrook@php.net"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Phing Community",
|
||||||
|
"homepage": "http://www.phing.info/trac/wiki/Development/Contributors"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"description": "PHing Is Not GNU make; it's a PHP project build system or build tool based on Apache Ant.",
|
||||||
|
"homepage": "http://www.phing.info/",
|
||||||
|
"keywords": [
|
||||||
|
"build",
|
||||||
|
"task",
|
||||||
|
"tool"
|
||||||
|
],
|
||||||
|
"time": "2012-11-29 21:23:47"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"name": "phpunit/dbunit",
|
"name": "phpunit/dbunit",
|
||||||
"version": "1.2.3",
|
"version": "1.2.3",
|
||||||
|
@ -15,6 +15,10 @@
|
|||||||
<testsuite name="phpBB Test Suite">
|
<testsuite name="phpBB Test Suite">
|
||||||
<directory suffix="_test.php">../tests/</directory>
|
<directory suffix="_test.php">../tests/</directory>
|
||||||
<exclude>tests/functional</exclude>
|
<exclude>tests/functional</exclude>
|
||||||
|
<exclude>tests/lint_test.php</exclude>
|
||||||
|
</testsuite>
|
||||||
|
<testsuite name="phpBB Lint Test">
|
||||||
|
<file>tests/lint_test.php</file>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="phpBB Functional Tests">
|
<testsuite name="phpBB Functional Tests">
|
||||||
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
||||||
|
@ -15,6 +15,10 @@
|
|||||||
<testsuite name="phpBB Test Suite">
|
<testsuite name="phpBB Test Suite">
|
||||||
<directory suffix="_test.php">../tests/</directory>
|
<directory suffix="_test.php">../tests/</directory>
|
||||||
<exclude>tests/functional</exclude>
|
<exclude>tests/functional</exclude>
|
||||||
|
<exclude>tests/lint_test.php</exclude>
|
||||||
|
</testsuite>
|
||||||
|
<testsuite name="phpBB Lint Test">
|
||||||
|
<file>tests/lint_test.php</file>
|
||||||
</testsuite>
|
</testsuite>
|
||||||
<testsuite name="phpBB Functional Tests">
|
<testsuite name="phpBB Functional Tests">
|
||||||
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
<directory suffix="_test.php" phpVersion="5.3.19" phpVersionOperator=">=">../tests/functional</directory>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user