Skip to content

Commit

Permalink
Port from fenom-template/fenom
Browse files Browse the repository at this point in the history
  • Loading branch information
bzick committed Jan 19, 2016
0 parents commit 10d64af
Show file tree
Hide file tree
Showing 11 changed files with 2,593 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
service_name: travis-ci

src_dir: src
coverage_clover: build/logs/clover.xml
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
.idea
vendor
build
composer.phar
19 changes: 19 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
language: php

sudo: false

php:
- 5.3
- 5.4
- 5.5
- 5.6
- 7.0

before_script:
- composer install --dev

script:
- phpunit

after_script:
- php vendor/bin/coveralls
28 changes: 28 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@

{
"name": "fenom/tokenizer",
"type": "library",
"description": "Stand-alone Fenom's tokenizer",
"keywords": ["fenom", "template", "tokenizer", "parser"],
"license": "BSD-3",
"authors": [
{
"name": "Ivan Shalganov",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.0",
"ext-tokenizer": "*"
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": { "Fenom\\": "src/" }
},
"autoload-dev": {
"classmap": ["tests"]
}
}
Loading

0 comments on commit 10d64af

Please sign in to comment.