Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix line endings (\r\n -> \n)
  • Loading branch information
lanthaler committed Sep 14, 2014
1 parent 4bf0cfb commit 2663e51
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 94 deletions.
8 changes: 4 additions & 4 deletions .gitignore
@@ -1,4 +1,4 @@
/vendor
/composer.lock
/phpunit.xml
/earl-report.jsonld
/vendor
/composer.lock
/phpunit.xml
/earl-report.jsonld
32 changes: 16 additions & 16 deletions .travis.yml
@@ -1,16 +1,16 @@
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm

matrix:
fast_finish: true
allow_failures:
- php: hhvm

before_script:
- composer install
language: php

php:
- 5.3
- 5.4
- 5.5
- 5.6
- hhvm

matrix:
fast_finish: true
allow_failures:
- php: hhvm

before_script:
- composer install
148 changes: 74 additions & 74 deletions phpunit.xml.dist
@@ -1,74 +1,74 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
strict="true"
bootstrap="./Test/bootstrap.php">

<testsuites>
<testsuite name="JsonLD Test Suite">
<directory suffix="Test.php">./Test/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory>./Test</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>

<!-- Uncomment this section if you want to generate an EARL implementation report
<listeners>
<listener class="\ML\JsonLD\Test\EarlReportGenerator">
<arguments>
<array>
<element key="target">
<string>earl-report.jsonld</string>
</element>
<element key="project-name">
<string>JsonLD</string>
</element>
<element key="project-url">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="project-homepage">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="license-url">
<string>https://raw.github.com/lanthaler/JsonLD/master/LICENSE</string>
</element>
<element key="project-description">
<string>JSON-LD processor for PHP</string>
</element>
<element key="programming-language">
<string>PHP</string>
</element>
<element key="developer-name">
<string>Markus Lanthaler</string>
</element>
<element key="developer-url">
<string>http://me.markus-lanthaler.com</string>
</element>
<element key="developer-homepage">
<string>http://www.markus-lanthaler.com/</string>
</element>
</array>
</arguments>
</listener>
</listeners>
-->

<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
</logging>

</phpunit>
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
strict="true"
bootstrap="./Test/bootstrap.php">

<testsuites>
<testsuite name="JsonLD Test Suite">
<directory suffix="Test.php">./Test/</directory>
</testsuite>
</testsuites>

<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory>./</directory>
<exclude>
<directory>./Test</directory>
<directory>./vendor</directory>
</exclude>
</whitelist>
</filter>

<!-- Uncomment this section if you want to generate an EARL implementation report
<listeners>
<listener class="\ML\JsonLD\Test\EarlReportGenerator">
<arguments>
<array>
<element key="target">
<string>earl-report.jsonld</string>
</element>
<element key="project-name">
<string>JsonLD</string>
</element>
<element key="project-url">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="project-homepage">
<string>https://github.com/lanthaler/JsonLD</string>
</element>
<element key="license-url">
<string>https://raw.github.com/lanthaler/JsonLD/master/LICENSE</string>
</element>
<element key="project-description">
<string>JSON-LD processor for PHP</string>
</element>
<element key="programming-language">
<string>PHP</string>
</element>
<element key="developer-name">
<string>Markus Lanthaler</string>
</element>
<element key="developer-url">
<string>http://me.markus-lanthaler.com</string>
</element>
<element key="developer-homepage">
<string>http://www.markus-lanthaler.com/</string>
</element>
</array>
</arguments>
</listener>
</listeners>
-->

<logging>
<log type="coverage-text" target="php://stdout" showUncoveredFiles="true" />
</logging>

</phpunit>

0 comments on commit 2663e51

Please sign in to comment.