generated from JBZoo/Skeleton-PHP
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Building phar file * Tests for phar file * Upload phar file on each new tag * Updated Readme
- Loading branch information
Showing
10 changed files
with
5,663 additions
and
60 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,5 +16,4 @@ | |
build | ||
vendor | ||
phpunit.xml | ||
composer.lock | ||
*.cache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
{ | ||
"banner" : [ | ||
"JBZoo Toolbox - Composer-Diff", | ||
"", | ||
"This file is part of the JBZoo Toolbox project.", | ||
"For the full copyright and license information, please view the LICENSE", | ||
"file that was distributed with this source code.", | ||
"", | ||
"@package Composer-Diff", | ||
"@license MIT", | ||
"@copyright Copyright (C) JBZoo.com, All rights reserved.", | ||
"@link https://github.com/JBZoo/Composer-Diff" | ||
], | ||
|
||
"output" : "build/composer-diff.phar", | ||
|
||
"directories" : ["src"], | ||
"files" : ["composer-diff.php"], | ||
"git-version" : "git-version", | ||
|
||
"finder" : [ | ||
{ | ||
"in" : "vendor", | ||
"name" : "*.php", | ||
"exclude" : ["Tests", "tests", "test"] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name" : "jbzoo/composer-diff", | ||
"type" : "library", | ||
"description" : "See what has changed after a composer update.", | ||
"keywords" : ["composer", "php", "composer.lock", "composer.json"], | ||
"license" : "MIT", | ||
"name" : "jbzoo/composer-diff", | ||
"type" : "library", | ||
"description" : "See what has changed after a composer update.", | ||
"keywords" : ["composer", "php", "composer.lock", "composer.json", "diff", "composer diff", "composer-diff"], | ||
"license" : "MIT", | ||
|
||
"authors" : [ | ||
"authors" : [ | ||
{ | ||
"name" : "Denis Smetannikov", | ||
"email" : "[email protected]", | ||
|
@@ -18,7 +18,7 @@ | |
} | ||
], | ||
|
||
"require" : { | ||
"require" : { | ||
"php" : ">=7.2", | ||
"ext-json" : "*", | ||
"ext-filter" : "*", | ||
|
@@ -29,33 +29,35 @@ | |
"composer/semver" : ">=1.0" | ||
}, | ||
|
||
"require-dev" : { | ||
"require-dev" : { | ||
"jbzoo/utils" : "^4.2.3", | ||
"jbzoo/phpunit" : "^4.6.2", | ||
"jbzoo/codestyle" : "^2.10.0", | ||
"jbzoo/toolbox-ci" : "^1.3.5", | ||
"symfony/var-dumper" : "^4.4|^5.2.5", | ||
"php-coveralls/php-coveralls" : "^2.4.3" | ||
"php-coveralls/php-coveralls" : "^2.4.3", | ||
"roave/security-advisories" : "dev-master" | ||
}, | ||
|
||
"autoload" : { | ||
"autoload" : { | ||
"psr-4" : { | ||
"JBZoo\\ComposerDiff\\" : "src" | ||
} | ||
}, | ||
|
||
"autoload-dev" : { | ||
"autoload-dev" : { | ||
"classmap" : ["tests"] | ||
}, | ||
|
||
"bin" : ["composer-diff"], | ||
"minimum-stability" : "dev", | ||
"prefer-stable" : true, | ||
"config" : { | ||
"optimize-autoloader" : true | ||
"bin" : ["composer-diff"], | ||
"config" : { | ||
"optimize-autoloader" : true, | ||
"platform" : { | ||
"php" : "7.2" | ||
} | ||
}, | ||
|
||
"extra" : { | ||
"extra" : { | ||
"branch-alias" : { | ||
"dev-master" : "1.x-dev" | ||
} | ||
|
Oops, something went wrong.