-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #11 from elminson/elminson_improvements
Elminson improvements
- Loading branch information
Showing
4 changed files
with
18 additions
and
42 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,7 @@ | ||
# PHPProjectGen | ||
<table class="framed light" border=""> | ||
<tbody><tr> | ||
<td align="center"><a href="https://www.phpclasses.org/" title="PHP Classes" alt="PHP Classes"><img src="https://files.phpclasses.org/graphics/phpclasses/logo-small-phpclasses.svg" width="275" alt="PHP Classes" style="vertical-align: top"></a><br> | ||
<hr> | ||
<b><a href="https://www.phpclasses.org/package/10938-PHP-Generate-files-for-a-Composer-skeleton-project.html">PHP Project Structure Composer Generator</a><br> | ||
By <a href="https://www.phpclasses.org/browse/author/337051.html">ELMINSON DE OLEO</a></b><br> | ||
<a href="https://www.phpclasses.org/award/innovation/"><img src="https://www.phpclasses.org/award/innovation/nominee.gif" width="89" height="89" alt="PHP Programming Innovation award nominee" title="PHP Programming Innovation award nominee" border="0"></a><br><b><span style="font-size: large">October 2018<br> | ||
Nominee<br> | ||
<a href="https://www.phpclasses.org/vote.html">Vote</a></span></b></td> | ||
</tr> | ||
</tbody></table> | ||
<br> | ||
Set all necessary components to create a skeleton project in PHP (composer) with PHPunit test cases. | ||
PHP Classes <br> | ||
[![PHP Classes]](https://www.phpclasses.org/package/10938-PHP-Generate-files-for-a-Composer-skeleton-project.html) | ||
|
||
|
||
Packagist <br> | ||
|
@@ -45,14 +36,15 @@ composer create-project elminson/phpprojectgen | |
Configure your package (config.json) | ||
```json | ||
{ | ||
"name": "Elminson", | ||
"name": "Company", | ||
"projectname": "NewProject", | ||
"description": "Project description", | ||
"phpunit": true, | ||
"developer": "Elminson De Oleo Baez", | ||
"email": "[email protected]", | ||
"phpunitversion": "~9", | ||
"developer": "author", | ||
"email": "[email protected]", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"minimum-stability": "stable", | ||
"type": "project" | ||
} | ||
``` | ||
|
@@ -69,8 +61,8 @@ tests/testNewProject.php | |
composer.json | ||
README.md | ||
``` | ||
After unzip the file you have to run | ||
After unzip the file you have to run | ||
```php | ||
composer install | ||
``` | ||
and you will have your project up and running in 5 minutes or less. | ||
and you will have your project up and running in 30 seconds or less. |
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,12 +1,12 @@ | ||
{ | ||
"name": "Elminson", | ||
"name": "Company", | ||
"projectname": "NewProject", | ||
"description": "Project description", | ||
"phpunit": true, | ||
"phpunitversion": "^9", | ||
"developer": "Elminson De Oleo Baez", | ||
"email": "edeoleo@gmail.com", | ||
"phpunitversion": "~9", | ||
"developer": "author", | ||
"email": "author@email.com", | ||
"license": "MIT", | ||
"minimum-stability": "dev", | ||
"minimum-stability": "stable", | ||
"type": "project" | ||
} |
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