Skip to content

Commit eef4694

Browse files
committed
Adding composer.json
2 parents a45c7a6 + 533511a commit eef4694

File tree

153 files changed

+6872
-3533
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

153 files changed

+6872
-3533
lines changed

.editorconfig

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
; top-most EditorConfig file
2+
root = true
3+
4+
; Unix-style newlines
5+
[*]
6+
end_of_line = LF
7+
8+
[*.php]
9+
indent_style = space
10+
indent_size = 4

.gitignore

100755100644
File mode changed.

.php_cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
3+
return Symfony\CS\Config\Config::create()->finder(Symfony\CS\Finder\DefaultFinder::create()
4+
->notName('LICENSE')
5+
->notName('README.md')
6+
->notName('composer.*')
7+
->notName('phpunit.xml*')
8+
->notName('*.phar')
9+
->notName('ExceptionHandler.php')
10+
->exclude('src/Debug')
11+
->exclude('vendor')
12+
->in(__DIR__)
13+
);

.travis.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,22 @@
11
language: php
22

33
php:
4-
- 5.3.3
54
- 5.3
65
- 5.4
6+
- 5.5
7+
- 5.6
8+
- hhvm
79

810
before_install:
911
- phpenv rehash
12+
- echo '' > ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/xdebug.ini
13+
- sh -c 'if [ $(php -r "echo PHP_MINOR_VERSION;") -le 4 ]; then echo "extension = apc.so" >> ~/.phpenv/versions/$(phpenv version-name)/etc/php.ini; fi;'
14+
- COMPOSER_ROOT_VERSION=dev-master composer self-update
15+
- COMPOSER_ROOT_VERSION=dev-master composer --prefer-source --no-interaction --dev install
1016

1117
script: phpunit
18+
19+
matrix:
20+
fast_finish: true
21+
allow_failures:
22+
- php: hhvm

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2012 Paul Dragoonis <[email protected]>
1+
Copyright (c) 2012-2014 Paul Dragoonis <[email protected]>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

LICENSE.txt

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)