Skip to content

Commit f333c47

Browse files
committed
Feature(CI): Welcome to TravisCI
1 parent 2a24ad7 commit f333c47

File tree

3 files changed

+30
-1
lines changed

3 files changed

+30
-1
lines changed

.travis.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
dist: trusty
2+
sudo: false
3+
language: php
4+
5+
php:
6+
- 7.1
7+
- 7.2
8+
9+
before_install:
10+
- composer self-update
11+
12+
13+
install: travis_retry composer update --prefer-dist
14+
15+
script:
16+
- vendor/bin/phpcs

phpcs.xml.dist

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?xml version="1.0"?>
2+
<ruleset>
3+
<arg name="basepath" value="."/>
4+
<arg name="extensions" value="php"/>
5+
<arg name="colors" />
6+
7+
<!-- Show progress of the run -->
8+
<arg value="p"/>
9+
10+
<rule ref="Lowl"/>
11+
12+
<file>src</file>
13+
</ruleset>

src/Lowl/ruleset.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0"?>
22
<ruleset name="Doctrine">
3-
<description>The Doctrine coding standard.</description>
3+
<description>The Lowl coding standard.</description>
44

55
<!-- Import PSR-2 coding standard (base) -->
66
<rule ref="PSR2"/>

0 commit comments

Comments
 (0)