Skip to content

Commit 19c27d9

Browse files
committed
Initial project layout
1 parent b26c98e commit 19c27d9

16 files changed

+2507
-16
lines changed

.gitignore

+12-14
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
1-
vendor/
2-
node_modules/
3-
4-
# Laravel 4 specific
5-
bootstrap/compiled.php
6-
app/storage/
7-
8-
# Laravel 5 & Lumen specific
9-
bootstrap/cache/
10-
.env.*.php
11-
.env.php
1+
/vendor
2+
/node_modules
3+
composer.phar
4+
.DS_Store
125
.env
13-
14-
# Rocketeer PHP task runner and deployment package. https://github.com/rocketeers/rocketeer
15-
.rocketeer/
6+
.idea/workspace.xml
7+
.idea/tasks.xml
8+
.idea/php.xml
9+
.idea/vagrant.xml
10+
.idea/remote-mappings.xml
11+
.idea/runConfigurations/Build_Templates_Command.xml
12+
*/.iws
13+
npm-debug.log

.idea/copyright/profiles_settings.xml

+3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/encodings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/laravel-addressing.iml

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+13
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.travis.yml

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
language: php
2+
3+
php:
4+
- 5.5
5+
- 5.6
6+
- 7.0
7+
- hhvm
8+
9+
matrix:
10+
fast_finish: true
11+
allow_failures:
12+
- php: 7.0
13+
14+
before_script:
15+
- travis_retry composer self-update
16+
- travis_retry composer install --prefer-source --no-interaction
17+
18+
script:
19+
- phpunit

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Galahad
3+
Copyright (c) 2016 Galahad, Inc
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# laravel-addressing
1+
# Laravel Addressing
22
Laravel package providing addressing functionality

composer.json

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"name": "galahad/laravel-addressing",
3+
"description": "Laravel package providing addressing functionality",
4+
"keywords": [
5+
"laravel",
6+
"address",
7+
"addressing",
8+
"validation",
9+
"countries"
10+
],
11+
"homepage": "https://github.com/glhd/laravel-addressing",
12+
"authors": [
13+
{
14+
"name": "Chris Morrell"
15+
}
16+
],
17+
"require": {
18+
"php": ">=5.5.9",
19+
"illuminate/support": "~5.2",
20+
"commerceguys/addressing": "^0.8.2",
21+
"illuminate/http": "^5.2",
22+
"illuminate/routing": "^5.2"
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "~4.5"
26+
},
27+
"autoload": {
28+
"psr-4": {
29+
"Galahad\\LaravelAddressing\\": "src/"
30+
}
31+
},
32+
"license": "MIT"
33+
}

0 commit comments

Comments
 (0)