https://github.com/jacques/php-reports
Helpers for creating reports
https://github.com/jacques/php-reports
excel phpspreadsheet
Last synced: about 2 months ago
JSON representation
Helpers for creating reports
- Host: GitHub
- URL: https://github.com/jacques/php-reports
- Owner: jacques
- License: mpl-2.0
- Created: 2018-05-03T16:05:43.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2024-11-02T07:46:51.000Z (7 months ago)
- Last Synced: 2025-03-24T17:11:08.373Z (2 months ago)
- Topics: excel, phpspreadsheet
- Language: PHP
- Size: 133 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# Reports
[](https://twitter.com/jacques)
[](LICENSE.md)
[](https://scrutinizer-ci.com/g/jacques/php-reports/?branch=master)
[](https://codeclimate.com/github/jacques/php-reports/maintainability)
[](https://codeclimate.com/github/jacques/php-reports/test_coverage)> Helpers for building reports with PHP (i.e. Excel Spreadsheets). Use the
> [phpspreadsheet](https://github.com/phpoffice/phpspreadsheet) package to generate
> the Excel Spreadsheet.---
## Installation
```
$ composer require jacques/php-reports:dev-master
``````
{
"require": {
"jacques/php-reports": "dev-master"
}
}
```---
## Usage
```php
setCellValue('B2', 'Report Name');
$report->setCellValue('B4', 'Description');$report->createSheet('User');
$report->save(__DIR__.'/tmp/file.xlsx');
```---
## License
Report Helpers is licensed under the [MPL v.2.0](LICENSE).
This source code form is distributed under the License is distributed
on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,
either express or implied. See the License for the specific language
governing permissions and limitations under the License.