This website works better with JavaScript.
Home
Explore
Help
Sign In
p3k
/
XRay
mirror of
https://github.com/aaronpk/XRay.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
77
Wiki
Activity
Browse Source
add travis and phpunit config
pull/39/head
Aaron Parecki
8 years ago
parent
22a71fd7e9
commit
6a73c40964
2 changed files
with
14 additions
and
0 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-0
.travis.yaml
+7
-0
phpunit.xml
+ 7
- 0
.travis.yaml
View File
@ -0,0 +1,7 @@
language
:
php
php:
-
5.5
sudo
:
false
before_script:
-
composer self-update
-
composer install --prefer-dist --no-interaction
+ 7
- 0
phpunit.xml
View File
@ -0,0 +1,7 @@
<phpunit
bootstrap=
"tests/bootstrap.php"
>
<testsuites
>
<testsuite
name=
"Tests"
>
<directory
>
tests/
</directory>
</testsuite>
</testsuites>
</phpunit>
Write
Preview
Loading…
Cancel
Save