Skip to content
This repository was archived by the owner on Jan 10, 2023. It is now read-only.
Closed
Changes from 1 commit
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
Next Next commit
Added composer.json with corresponding dependencies.
  • Loading branch information
Thomas Ploch committed Dec 6, 2012
commit 325c509f54ec3bd5f205f63122b6d1df189f71dd
33 changes: 33 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"name": "sebastian/phpcpd",
"description": "Copy/Paste Detector (CPD) for PHP code.",
"homepage": "https://github.com/sebastianbergmann/phploc",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Sebastian Bergmann",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/sebastianbergmann/phpcpd/issues"
},
"require": {
"php": ">=5.3.3",
"zetacomponents/base": ">=1.8",
"zetacomponents/console-tools": ">=1.6",
"sebastian/finder-facade": "dev-master",
Copy link
Contributor

Choose a reason for hiding this comment

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

Requires "minimum-stability": "dev"

"phpunit/php-timer": ">=1.0.4",
"symfony/finder": ">=2.1.2",
"theseer/fdomdocument": "dev-master"
},
"autoload": {
"classmap": [
"src/"
]
},
"bin": [
"phpcpd.php"
]
}