Please, make sure you have taken a look on our documentation.
Are you with problem with one of ours components? The best way to reach us is to open a new issue, we just ask you to search if your problem was discussed before and if so continue the discussion there.
Wanna to submit a new pull request? Let us know what you're planning to work opening a new issue this will prevent that we're working on the same thing. We'll be very happy to discuss and review your code.
To clone the project source and install its dependencies, run:
git clone [email protected]:wireui/wireui.git
cd wireui
composer install
yarn install
To run the project test make sure you have installed the chromium-browser and run:
composer test
Now you can work on the project. We're using a code standard to format our code
so before send your PR make sure that you run composer phpcs
.
After installing the projects using the steps above you can create a brand new laravel project and add to the composer.json:
...,
"repositories": {
"local": {
"type": "path",
"url": "../path/to/wireui"
}
}
}
After added this configuration you can install the wireui project as a local dependency
using composer require wireui/wireui
, so when you change the wireui source code
it will be reflected on your laravel package.