File tree Expand file tree Collapse file tree 5 files changed +50
-6
lines changed
Expand file tree Collapse file tree 5 files changed +50
-6
lines changed Original file line number Diff line number Diff line change 1+ # xp-framework/ftp
2+
3+ language : php
4+
5+ php :
6+ - 5.4
7+ - 5.5
8+ - 5.6
9+ - hhvm
10+ - hhvm-nightly
11+
12+ matrix :
13+ allow_failures :
14+ - php : hhvm
15+ - php : hhvm-nightly
16+
17+ before_script :
18+ - wget 'https://github.com/xp-framework/xp-runners/releases/download/v5.2.0/setup' -O - | php
19+ - composer install --prefer-dist
20+ - echo "vendor/autoload.php" > composer.pth
21+ - echo "use=vendor/xp-framework/core" > xp.ini
22+ - echo "[runtime]" >> xp.ini
23+ - echo "date.timezone=Europe/Berlin" >> xp.ini
24+
25+ script :
26+ - ./unittest src/test/php
Original file line number Diff line number Diff line change 11FTP protocol support for the XP Framework
22========================================================================
33
4+ [ ![ Build Status on TravisCI] ( https://secure.travis-ci.org/xp-framework/ftp.svg )] ( http://travis-ci.org/xp-framework/ftp )
5+ [ ![ XP Framework Module] ( https://raw.githubusercontent.com/xp-framework/web/master/static/xp-framework-badge.png )] ( https://github.com/xp-framework/core )
6+ [ ![ BSD Licence] ( https://raw.githubusercontent.com/xp-framework/web/master/static/licence-bsd.png )] ( https://github.com/xp-framework/core/blob/master/LICENCE.md )
7+ [ ![ Required PHP 5.4+] ( https://raw.githubusercontent.com/xp-framework/web/master/static/php-5_4plus.png )] ( http://php.net/ )
8+ [ ![ Latest Stable Version] ( https://poser.pugx.org/xp-framework/ftp/version.png )] ( https://packagist.org/packages/xp-framework/ftp )
9+
410Client
511------
612
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " xp-framework/ftp" ,
3+ "type" : " library" ,
4+ "homepage" : " http://xp-framework.net/" ,
5+ "license" : " BSD-3-Clause" ,
6+ "description" : " FTP protocol support for the XP Framework" ,
7+ "keywords" : [" module" , " xp" ],
8+ "require" : {
9+ "xp-framework/core" : " dev-master" ,
10+ "php" : " >=5.4.0"
11+ },
12+ "autoload" : {
13+ "files" : [" src/main/php/autoload.php" ]
14+ }
15+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ <?php namespace xp ;
2+
3+ \lang \ClassLoader::registerPath (__DIR__ );
You can’t perform that action at this time.
0 commit comments