Skip to content

Commit 6b55d86

Browse files
committed
Initial commit.
0 parents  commit 6b55d86

18 files changed

+3636
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/vendor
2+
.env

.travis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
language: php
2+
3+
php:
4+
- 5.6
5+
- 7.0
6+
7+
install: composer install

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2016 Zach Leigh
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Laravel Lang Bundler
2+
[![Build Status](https://travis-ci.org/zachleigh/laravel-lang-bundler.svg?branch=master)](https://travis-ci.org/zachleigh/laravel-lang-bundler)
3+
[![Latest Stable Version](https://poser.pugx.org/zachleigh/laravel-lang-bundler/version.svg)](//packagist.org/packages/zachleigh/laravel-lang-bundler)
4+
[![Total Downloads](https://poser.pugx.org/zachleigh/laravel-lang-bundler/downloads)](https://packagist.org/packages/zachleigh/laravel-lang-bundler)
5+
[![StyleCI](https://styleci.io/repos/72352058/shield?style=flat)](https://styleci.io/repos/72352058)
6+
[![License](https://poser.pugx.org/zachleigh/laravel-lang-bundler/license.svg)](//packagist.org/packages/zachleigh/laravel-lang-bundler)
7+
##### Make bundles of translation values.
8+
9+
### Contents
10+
- [Why](#why)
11+
- [Install](#install)
12+
- [Usage](#usage)
13+
- [Advanced Usage](#advanced-usage)
14+
- [Commands](#commands)
15+
- [Configuration](#configuration)
16+
- [Limitations](#limitations)
17+
- [Testing](#testing)
18+
- [Contributing](#contributing)

composer.json

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
{
2+
"name": "zachleigh/laravel-vue-generators",
3+
"description": "Generate Vue js files via artisan commands.",
4+
"type": "project",
5+
"license": "MIT",
6+
"authors": [
7+
{
8+
"name": "Zach Leigh",
9+
"email": "[email protected]"
10+
}
11+
],
12+
13+
"require": {
14+
"php": ">=5.6.0"
15+
},
16+
17+
"require-dev": {
18+
"laravel/laravel": "5.3.*",
19+
"phpunit/phpunit": "~4.0"
20+
},
21+
22+
"autoload": {
23+
"psr-4": {
24+
"VueGenerators\\": "src/"
25+
}
26+
},
27+
28+
"autoload-dev": {
29+
"psr-4": {
30+
"VueGenerators\\tests\\": "tests/"
31+
}
32+
},
33+
34+
"scripts": {
35+
"test": "phpunit"
36+
},
37+
38+
"minimum-stability": "stable",
39+
"prefer-stable": true
40+
}

0 commit comments

Comments
 (0)