Skip to content
This repository has been archived by the owner on Mar 28, 2022. It is now read-only.

Commit

Permalink
Convert ZF2 site to use Zend Expressive instead
Browse files Browse the repository at this point in the history
  • Loading branch information
asgrim committed Sep 3, 2016
1 parent 5e6fe48 commit e4bc06f
Show file tree
Hide file tree
Showing 158 changed files with 4,195 additions and 1,925 deletions.
8 changes: 1 addition & 7 deletions .travis.yml
@@ -1,16 +1,10 @@
language: php

php:
- 5.4
- 5.5
- hhvm
- 7.0

before_script:
- composer install --dev

script:
- vendor/bin/phpunit --coverage-text

matrix:
allow_failures:
- php: hhvm
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (c) 2012-2015 PHP Hampshire CIC
Copyright (c) 2012-2016 PHP Hampshire CIC

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
Expand Down
42 changes: 31 additions & 11 deletions composer.json
@@ -1,18 +1,38 @@
{
"name": "phphants/phph-site",
"description": "PHP Hampshire website",
"license": "MIT",
"keywords": [
"php",
"hampshire"
"name": "zendframework/zend-expressive-skeleton",
"description": "Zend expressive skeleton. Begin developing PSR-7 middleware applications in seconds",
"type": "project",
"homepage": "https://github.com/zendframework/zend-expressive-skeleton",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Geert Eltink",
"homepage": "https://xtreamwayz.com/"
}
],
"homepage": "http://www.phphants.co.uk/",
"require": {
"php": ">= 5.4",
"zendframework/zendframework": "2.*",
"sabre/vobject": "3.*"
"php": "^7.0",
"roave/security-advisories": "dev-master",
"zendframework/zend-expressive": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-stdlib": "^3.0",
"zendframework/zend-expressive-fastroute": "^1.2",
"zendframework/zend-servicemanager": "^3.1",
"zendframework/zend-expressive-zendviewrenderer": "^1.1",
"sabre/vobject": "^4.1"
},
"require-dev": {
"phpunit/phpunit": "4.2.*"
"phpunit/phpunit": "^5.5",
"squizlabs/php_codesniffer": "^2.6"
},
"autoload": {
"psr-4": {
"App\\": "src/App/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "test/AppTest/"
}
}
}

0 comments on commit e4bc06f

Please sign in to comment.