diff --git a/.gitignore b/.gitignore index af0a1701..8c3ed741 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,7 @@ node_modules/ tests/ .nvmrc .prettierrc.js -*.DS_Store \ No newline at end of file +*.DS_Store +/.settings/ +/.buildpath +/.project diff --git a/README.md b/README.md index 91979e27..eb152436 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Shipped with two beautiful color themes, automatically enabled according to the ## Usage -There are 3 ways to get started with pico.css: +There are 4 ways to get started with pico.css: **Install manually** @@ -69,6 +69,12 @@ Alternatively, you can use [unpkg CDN](https://unpkg.com/@picocss/pico@latest/) npm install @picocss/pico ``` +**Install with Composer** + +```shell +composer require picocss/pico +``` + ## Class-less version Pico provides a `.classless` version ([example](https://picocss.com/examples/classless)). diff --git a/composer.json b/composer.json new file mode 100644 index 00000000..8602c779 --- /dev/null +++ b/composer.json @@ -0,0 +1,28 @@ +{ + "name": "picocss/pico", + "description": "Minimal CSS Framework for semantic HTML.", + "keywords": [ + "css", + "css-framework", + "dark-mode", + "dark-theme", + "lightweight", + "minimal", + "minimalist", + "minimalistic", + "native-html", + "scss-framework", + "semantic" + ], + "homepage": "https://picocss.com", + "authors": [ + { + "name": "Lucas Larroche", + "role" : "Lead Developer" + } + ], + "support": { + "issues": "https://github.com/picocss/pico/issues/" + }, + "license": "MIT" +}