Skip to content

Commit 2e7aeb9

Browse files
committed
Merge branch 'develop'
2 parents a38bafd + 5e2daca commit 2e7aeb9

File tree

12 files changed

+4350
-9
lines changed

12 files changed

+4350
-9
lines changed

.gitignore

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
2+
# Created by https://www.gitignore.io/api/laravel,osx
3+
# Edit at https://www.gitignore.io/?templates=laravel,osx
4+
5+
### Laravel ###
6+
/vendor/
7+
node_modules/
8+
npm-debug.log
9+
yarn-error.log
10+
11+
# Laravel 4 specific
12+
bootstrap/compiled.php
13+
app/storage/
14+
15+
# Laravel 5 & Lumen specific
16+
public/storage
17+
public/hot
18+
storage/*.key
19+
.env
20+
Homestead.yaml
21+
Homestead.json
22+
/.vagrant
23+
.phpunit.result.cache
24+
25+
### OSX ###
26+
# General
27+
.DS_Store
28+
.AppleDouble
29+
.LSOverride
30+
31+
# Icon must end with two \r
32+
Icon
33+
34+
# Thumbnails
35+
._*
36+
37+
# Files that might appear in the root of a volume
38+
.DocumentRevisions-V100
39+
.fseventsd
40+
.Spotlight-V100
41+
.TemporaryItems
42+
.Trashes
43+
.VolumeIcon.icns
44+
.com.apple.timemachine.donotpresent
45+
46+
# Directories potentially created on remote AFP share
47+
.AppleDB
48+
.AppleDesktop
49+
Network Trash Folder
50+
Temporary Items
51+
.apdisk
52+
53+
# End of https://www.gitignore.io/api/laravel,osx

.travis.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
language: php
2+
3+
php:
4+
- 7.1
5+
- 7.2
6+
- 7.3
7+
8+
dist: trusty
9+
10+
install:
11+
- composer self-update
12+
- composer install
13+
14+
script:
15+
- "./vendor/bin/phpunit --coverage-text"

composer.json

Lines changed: 23 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,8 @@
11
{
22
"name": "pp-spaces/laravel-repository",
33
"description": "Repository Design Pattern implementation for Laravel",
4-
"keywords": [
5-
"pp-spaces",
6-
"laravel",
7-
"repository",
8-
"laravel-repository",
9-
"repository-pattern"
10-
],
114
"type": "library",
5+
"homepage": "https://pp-spaces.github.io/laravel-repository/",
126
"license": "MIT",
137
"authors": [
148
{
@@ -18,17 +12,32 @@
1812
"role": "Developer"
1913
}
2014
],
15+
"keywords": [
16+
"pp-spaces",
17+
"laravel",
18+
"repository",
19+
"laravel-repository",
20+
"repository-pattern"
21+
],
2122
"require": {
2223
"php": ">=7.0",
23-
"illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
2424
"illuminate/console": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
25+
"illuminate/contracts": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0",
2526
"illuminate/support": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0|~5.8.0"
2627
},
28+
"require-dev": {
29+
"fzaninotto/faker": "^1.8",
30+
"mockery/mockery": "^1.2",
31+
"orchestra/testbench": "^3.5",
32+
"symfony/thanks": "^1.1"
33+
},
2734
"autoload": {
2835
"psr-4": {
29-
"PPSpaces\\": "src"
36+
"PPSpaces\\": "src/",
37+
"PPSpaces\\Tests\\": "tests/"
3038
}
3139
},
40+
"minimum-stability": "stable",
3241
"config": {
3342
"sort-packages": true
3443
},
@@ -38,5 +47,10 @@
3847
"PPSpaces\\RepositoryServiceProvider"
3948
]
4049
}
50+
},
51+
"scripts": {
52+
"test": [
53+
"vendor/bin/phpunit --testdox --coverage-text"
54+
]
4155
}
4256
}

0 commit comments

Comments
 (0)