-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1 parent
ec76d26
commit 4845f5e
Showing
2 changed files
with
68 additions
and
66 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 |
---|---|---|
@@ -1,33 +1,35 @@ | ||
{ | ||
"name": "josegonzalez/cakephp-version", | ||
"description": "CakePHP plugin to allow versioning of records", | ||
"type": "cakephp-plugin", | ||
"keywords": ["cakephp", "revision", "version"], | ||
"homepage": "https://github.com/josegonzalez/cakephp-version", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jose Diaz-Gonzalez", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.4.0", | ||
"cakephp/plugin-installer": "*" | ||
}, | ||
"require-dev": { | ||
"cakephp/cakephp": "3.0.*-dev", | ||
"phpunit/phpunit": "4.1.*" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Josegonzalez\\Version\\": "src", | ||
"Josegonzalez\\Version\\Test\\Fixture\\": "tests\\Fixture" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Josegonzalez\\Version\\Test\\": "tests" | ||
} | ||
} | ||
"name": "josegonzalez/cakephp-version", | ||
"description": "CakePHP plugin to allow versioning of records", | ||
"type": "cakephp-plugin", | ||
"keywords": ["cakephp", "revision", "version"], | ||
"homepage": "https://github.com/josegonzalez/cakephp-version", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Jose Diaz-Gonzalez", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"require": { | ||
"cakephp/cakephp": "~3.0", | ||
"php": ">=5.4.0", | ||
"cakephp/plugin-installer": "*" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "4.1.*", | ||
"cakephp/cakephp-codesniffer": "dev-master", | ||
"satooshi/php-coveralls": "dev-master" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Josegonzalez\\Version\\": "src", | ||
"Josegonzalez\\Version\\Test\\Fixture\\": "tests\\Fixture" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Josegonzalez\\Version\\Test\\": "tests" | ||
} | ||
} | ||
} |