Skip to content
This repository has been archived by the owner on Aug 12, 2019. It is now read-only.

Hywan composer #318

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 1 addition & 11 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,6 @@
language: php
php:
- 5.4
- 5.5
- 5.6
- 7
- hhvm

matrix:
allow_failures:
- php: 7
- php: hhvm
- 7.1

env:
matrix:
Expand All @@ -29,7 +20,6 @@ before_script:

script:
- bin/atoum --configurations tests/.atoum.php --bootstrap-file tests/.bootstrap.atoum.php
- bin/sabre-cs-fixer fix --dry-run --diff .

notifications:
slack:
Expand Down
4 changes: 2 additions & 2 deletions bin/katana
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license
*
* sabre/katana.
* Copyright (C) 2015 fruux GmbH (https://fruux.com/)
* Copyright (C) 2016 fruux GmbH (https://fruux.com/)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand All @@ -29,7 +29,7 @@ use Hoa\Router;
/**
* Entry point of the CLI script.
*
* @copyright Copyright (C) 2015 fruux GmbH (https://fruux.com/).
* @copyright Copyright (C) 2016 fruux GmbH (https://fruux.com/).
* @author Ivan Enderlin
* @license GNU Affero General Public License, Version 3.
*/
Expand Down
4 changes: 2 additions & 2 deletions bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @license
*
* sabre/katana.
* Copyright (C) 2015 fruux GmbH (https://fruux.com/)
* Copyright (C) 2016 fruux GmbH (https://fruux.com/)
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
Expand All @@ -23,7 +23,7 @@
/**
* Bootstrap the project.
*
* @copyright Copyright (C) 2015 fruux GmbH (https://fruux.com/).
* @copyright Copyright (C) 2016 fruux GmbH (https://fruux.com/).
* @author Ivan Enderlin
* @license GNU Affero General Public License, Version 3.
*/
Expand Down
43 changes: 25 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,30 +14,31 @@
"source": "https://github.com/fruux/sabre-katana/"
},
"require": {
"php" : ">=5.4.7",
"php" : ">=7.1.0",
"ext-spl" : "*",
"ext-pdo" : ">=1.0",
"sabre/dav" : "~3.0.1",
"hoa/console" : "~2.0",
"hoa/core" : "~2.0, >=2.15.04.13",
"hoa/dispatcher" : "~0.0, >=0.15.01.23",
"hoa/eventsource" : "~2.0",
"hoa/iterator" : "~1.0",
"hoa/mail" : "~0.0, >=0.15.06.03",
"hoa/mime" : "~2.0",
"hoa/router" : "~2.0",
"hoa/socket" : "~0.0, >=0.15.02.25",
"hoa/ustring" : "~3.0",
"hoa/stringbuffer" : "~0.0",
"hoa/file" : "~0.15.05.27",
"hoa/consistency" : "~1.0",
"hoa/console" : "~3.0",
"hoa/dispatcher" : "~1.0",
"hoa/event" : "~1.0",
"hoa/eventsource" : "~3.0",
"hoa/file" : "~1.0",
"hoa/iterator" : "~2.0",
"hoa/mail" : "~0.0, >=0.16.01.11",
"hoa/mime" : "~3.0",
"hoa/router" : "~3.0",
"hoa/socket" : "~1.0",
"hoa/stringbuffer" : "~1.0",
"hoa/ustring" : "~4.0",
"ircmaxell/password-compat": "~1.0"
},
"require-dev": {
"atoum/atoum" : "~2.4, >=2.4.1",
"atoum/praspel-extension" : "~0.1",
"atoum/ruler-extension" : "~1.0, >=1.0.2",
"sabre/cs" : "~0.0.4",
"hoa/regex" : "~0.15.08.13"
"atoum/atoum" : "~3.0",
"atoum/praspel-extension" : "~0.16",
"atoum/ruler-extension" : "~1.2",
"sabre/cs" : "~0.0.5",
"hoa/regex" : "~1.0"
},
"suggest": {
"ext-pdo_sqlite": "If you decide to use SQLite.",
Expand All @@ -49,6 +50,12 @@
"Sabre\\Katana\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Sabre\\Katana\\Test\\": "tests/",
"Mock\\": "tests/Mock"
}
},
"bin": ["bin/katana"],
"config": {
"bin-dir" : "bin/",
Expand Down
Loading