芝麻web文件管理V1.00
编辑当前文件:/home/forge/stage.sksb.smartcon-survey.com/vendor/wireui/wireui/CONTRIBUTING.md
# Contributing ## Before you start Please, make sure you have taken a look on [our documentation](https://livewire-wireui.com/). 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. ## Installing To clone the project source and install its dependencies, run: ```shell git clone git@github.com:wireui/wireui.git cd wireui composer install yarn install ``` To run the project test make sure you have installed the chromium-browser and run: ```shell 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 `. ## Work on a local project with the project source After installing the projects using the steps above you can create a brand new laravel project and add to the composer.json: ```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.