Skip to content

Commit 2982759

Browse files
committed
repository config update
1 parent 7a44507 commit 2982759

File tree

4 files changed

+19
-4
lines changed

4 files changed

+19
-4
lines changed

.styleci.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
preset: psr2
2+
3+
linting: true
4+
5+
finder:
6+
name:
7+
- "*.php"
8+
path:
9+
- "src"
10+
- "tests"

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@ matrix:
88
allow_failures:
99
- php: nightly
1010

11+
before_script:
12+
- composer install
13+
1114
script:
1215
- phpunit

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "linna/typed-array",
33
"type": "library",
44
"description": "Linna Typed Array",
5-
"keywords": ["Array", "Typed Array", "php"],
5+
"keywords": ["array", "typed array", "php"],
66
"license": "MIT",
77
"authors": [
88
{
@@ -11,6 +11,9 @@
1111
"homepage": "https://github.com/linna/typed-array"
1212
}
1313
],
14+
"support": {
15+
"issues": "https://github.com/linna/typed-array/issues"
16+
},
1417
"require": {
1518
"php": "^7.0.0"
1619
},

phpunit.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
<phpunit colors="true"
2-
bootstrap="tests/bootstrap.php"
3-
verbose="true">
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<phpunit colors="true" bootstrap="vendor/autoload.php" verbose="true">
43
<testsuites>
54
<testsuite name="Linna Array Test Suite">
65
<directory suffix="Test.php">tests</directory>

0 commit comments

Comments
 (0)