Skip to content

Commit

Permalink
Autoload on dev using composer, update invalid license
Browse files Browse the repository at this point in the history
  • Loading branch information
Willem Stuursma committed Nov 13, 2017
1 parent 6c45fb2 commit cc2170e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 48 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,6 @@
/.buildpath
/.project
/.idea
/composer.lock
/node_modules/
/vendor/
67 changes: 41 additions & 26 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,44 @@
{
"name": "php-twinfield/twinfield",
"type": "library",
"description": "Library for using the Twinfield Soap Service.",
"keywords": ["twinfield"],
"homepage": "https://github.com/php-twinfield/twinfield",
"license": "GPL",
"authors": [
{"name": "Remco Tolsma", "email": "[email protected]"},
{"name": "Leon Rowland", "email": "[email protected]"}
],
"conflict": {
"pronamic/twinfield": "*"
"name": "php-twinfield/twinfield",
"type": "library",
"description": "Library for using the Twinfield Soap Service.",
"keywords": [
"twinfield"
],
"homepage": "https://github.com/php-twinfield/twinfield",
"license": "GPL-3.0",
"authors": [
{
"name": "Remco Tolsma",
"email": "[email protected]"
},
"replace": {
"pronamic/twinfield": "*"
},
"require": {
"php": ">=5.6"
},
"autoload": {
"psr-0": { "Pronamic": "src/"}
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"sensiolabs/security-checker": "^4.1",
"phpunit/phpunit": "^3.7 || ^4.8 || ^5.4"
}
{
"name": "Leon Rowland",
"email": "[email protected]"
}
],
"conflict": {
"pronamic/twinfield": "*"
},
"replace": {
"pronamic/twinfield": "*"
},
"require": {
"php": ">=5.6"
},
"autoload": {
"psr-0": {
"Pronamic": "src/"
}
},
"autoload-dev": {
"classmap": [
"tests/src/"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"sensiolabs/security-checker": "^4.1",
"phpunit/phpunit": "^3.7 || ^4.8 || ^5.4"
}
}
1 change: 0 additions & 1 deletion phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<phpunit
bootstrap="tests/bootstrap.php"
backupGlobals="false"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
Expand Down
21 changes: 0 additions & 21 deletions tests/bootstrap.php

This file was deleted.

0 comments on commit cc2170e

Please sign in to comment.