Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/grasmash/artifice
https://github.com/grasmash/artifice
Last synced: 18 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/grasmash/artifice
- Owner: grasmash
- Created: 2018-01-09T21:56:02.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-02-13T20:11:23.000Z (almost 7 years ago)
- Last Synced: 2024-10-25T21:10:08.447Z (2 months ago)
- Language: PHP
- Size: 66.4 KB
- Stars: 1
- Watchers: 1
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/grasmash/artifice.svg?branch=master)](https://travis-ci.org/grasmash/artifice) [![Coverage Status](https://coveralls.io/repos/github/grasmash/artifice/badge.svg?branch=master)](https://coveralls.io/github/grasmash/artifice?branch=master)
## Install
`$ composer require grasmash/artifice`
## Contributing
Clone repo:
```
$ git clone [email protected]:grasmash/artifice.git /path/to/artifice
```Edit `~/.composer/composer.json`:
```
{
"repositories": {
"artifice": {
"type": "path",
"url": "/path/to/artifice",
"options": {
"symlink": true
}
}
},
"require": {
"grasmash/artifice": "*@dev"
}
}
```
Execute:
```
$ composer global update
$ composer list
```You should now see `generate-artifact` as an available command.
### Testing
```
$ cd /path/to/artifice
$ composer test
```### Auto-fix code style
```
$ cd /path/to/artifice
$ composer cbf
```### Debugging
Composer disables xDebug by default. To force xDebug usage when debugging the `generate-arifact` command, run:
```
$ COMPOSER_ALLOW_XDEBUG=1 composer generate-artifact
```