-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
25 lines (25 loc) · 832 Bytes
/
composer.json
File metadata and controls
25 lines (25 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{
"name": "rotexsoft/compare-php-class-by-git-branch",
"description": "This package compares versions of PHP classes across two git branches to show methods & properties present in one branch & not in the other",
"type": "library",
"license": "BSD-3-Clause",
"authors" : [{
"name" : "Rotimi Adegbamigbe",
"email" : "rotexdegba007-github@yahoo.ca",
"homepage" : "https://github.com/rotexdegba",
"role" : "Developer"
}],
"autoload": {
"psr-4": {
"Rotexsoft\\ComparePhpClassByGitBranch\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable" : true,
"require": {
"php" : ">=8.1.0",
"roave/better-reflection": "^6.25",
"league/climate": "^3.8"
},
"bin": ["bin/compare-php-class-by-git-branch"]
}