Update composer.json

- Add author homepage
- Remove post-create-project-cmd script
- Add archive exclude list
This commit is contained in:
Hypolite Petovan 2018-11-11 23:28:07 -05:00
parent 2ce832dbb8
commit 917ca1a4d6
1 changed files with 14 additions and 4 deletions

View File

@ -7,7 +7,8 @@
"authors": [ "authors": [
{ {
"name": "Hypolite Petovan", "name": "Hypolite Petovan",
"email": "hypolite@mrpetovan.com" "email": "hypolite@mrpetovan.com",
"homepage": "https://friendica.mrpetovan.com/profile/hypolite"
} }
], ],
"require": { "require": {
@ -59,9 +60,18 @@
} }
} }
}, },
"scripts": { "archive": {
"post-create-project-cmd" : [ "exclude": [
"php bin/console.php install" ".idea",
".github",
".gitignore",
"/tests",
"/*.xml",
"/composer.*",
"!/vendor",
"public/assets/vendor",
"!public/assets/vendor/fontawesome/web-fonts-with-css",
"!public/assets/vendor/bootstrap.native/dist"
] ]
} }
} }