Skip to content

Commit e9b9e81

Browse files
committed
Adding package needs
1 parent 58e85c9 commit e9b9e81

File tree

2 files changed

+47
-0
lines changed

2 files changed

+47
-0
lines changed

.travis.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
8+
before_script:
9+
- curl -s http://getcomposer.org/installer | php
10+
- php composer.phar install --dev
11+
12+
script: phpunit

composer.json

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
{
2+
"name": "syntax/chat",
3+
"description": "An upgrade to syntax/core to add chat functionality.",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Stygian",
8+
"email": "[email protected]"
9+
},
10+
{
11+
"name": "Riddles",
12+
"email": "[email protected]"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.3.0",
17+
"syntax/core": "*"
18+
},
19+
"autoload": {
20+
"classmap": [
21+
"src/controllers",
22+
"src/models",
23+
"src/node",
24+
"src/views"
25+
],
26+
"psr-0": {
27+
"Syntax\\Chat\\": "src/"
28+
}
29+
},
30+
"extra": {
31+
"branch-alias": {
32+
"dev-master": "1.0-dev"
33+
}
34+
}
35+
}

0 commit comments

Comments
 (0)