Skip to content

Commit

Permalink
Moved to using composer to install dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
librarywebchic committed Apr 28, 2017
1 parent 649510e commit 7239c87
Show file tree
Hide file tree
Showing 3 changed files with 3,234 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -6,3 +6,5 @@ config/config.php
config/crosswalks.php
scripts/*.config.php
*~
/.buildpath
/.project
46 changes: 46 additions & 0 deletions composer.json
@@ -0,0 +1,46 @@
{
"repositories" : [{
"type" : "git",
"url" : "https://github.com/OCLC-Developer-Network/oclc-auth-php.git"
}
],
"require" : {
"php" : ">=5.6",
"lib-curl" : "*",
"lib-openssl" : "*",
"ext-curl" : "*",
"ext-json" : "*",
"guzzlehttp/guzzle" : "^6",
"symfony/yaml" : "*",
"tecnickcom/tcpdf" : "^6.2",
"OCLC/Auth" : "^4.0"
},
"require-dev" : {
"phpunit/phpunit" : "^5",
"php-vcr/php-vcr" : "1.3.1",
"php-vcr/phpunit-testlistener-vcr" : "*",
"behat/behat" : "2.4.*@stable",
"behat/mink" : "*",
"behat/mink-extension" : "*",
"behat/mink-goutte-driver" : "*"
},
"config" : {
"bin-dir" : "vendor/bin"
},
"name" : "OCLC/WMSLabel",
"license" : "Apache-2.0",
"support" : {
"email" : "devnet@oclc.org"
},
"type" : "project",
"autoload" : {
"psr-4" : {
"WorldCat\\Registry\\" : "app/models"
}
},
"keywords" : [
"OCLC",
"WMS",
"Labels"
]
}

0 comments on commit 7239c87

Please sign in to comment.