commit
4756c82118
@ -3,5 +3,4 @@ php:
|
|||||||
- "5.4"
|
- "5.4"
|
||||||
- "5.3"
|
- "5.3"
|
||||||
before_script:
|
before_script:
|
||||||
- git clone git://github.com/phpseclib/phpseclib.git phpseclib
|
- composer install --prefer-source --dev
|
||||||
- mv phpseclib/phpseclib/* ./
|
|
||||||
|
24
composer.json
Normal file
24
composer.json
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
{
|
||||||
|
"name": "singpolyma/openpgp-php",
|
||||||
|
"description": "Pure-PHP implementation of the OpenPGP Message Format (RFC 4880)",
|
||||||
|
"license": "Unlicense",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "Arto Bendiken",
|
||||||
|
"email": "arto.bendiken@gmail.com"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"name": "Stephen Paul Weber",
|
||||||
|
"email": "singpolyma@singpolyma.net"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"require": {
|
||||||
|
"phpseclib/phpseclib": "~0.3"
|
||||||
|
},
|
||||||
|
"require-dev": {
|
||||||
|
"phpunit/phpunit": "~4.0"
|
||||||
|
},
|
||||||
|
"autoload": {
|
||||||
|
"classmap": ["lib/"]
|
||||||
|
}
|
||||||
|
}
|
@ -1,4 +1,4 @@
|
|||||||
<phpunit>
|
<phpunit bootstrap="tests/bootstrap.php">
|
||||||
<testsuites>
|
<testsuites>
|
||||||
<testsuite name="Serialization">
|
<testsuite name="Serialization">
|
||||||
<file>tests/suite.php</file>
|
<file>tests/suite.php</file>
|
||||||
|
2
tests/bootstrap.php
Normal file
2
tests/bootstrap.php
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
<?php
|
||||||
|
@include_once dirname(__FILE__) . '/../vendor/autoload.php';
|
Loading…
Reference in New Issue
Block a user