Skip to content
This repository has been archived by the owner on Jan 10, 2024. It is now read-only.

Add composer config file #31

Merged
merged 3 commits into from
Dec 18, 2013
Merged
Show file tree
Hide file tree
Changes from 2 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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/vendor/
14 changes: 14 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"name": "developerforce/force.com-toolkit-for-php",
"autoload": {
"psr-0": { "DeveloperForce\\ForceDotComToolkit": "" },
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This psr-0 line seems redundant; there isn't anything that's PSR-0 compatible here, unfortunately.

"classmap": [
"soapclient"
]
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}