Skip to content

Commit

Permalink
Merge pull request #1 from alex-patterson-webdev/feature/1.0.0
Browse files Browse the repository at this point in the history
feature/1.0.0
  • Loading branch information
alex-patterson-webdev committed Apr 8, 2020
2 parents 91d8dff + 6d90c3f commit 5acb8cd
Show file tree
Hide file tree
Showing 25 changed files with 415 additions and 2,116 deletions.
11 changes: 7 additions & 4 deletions .gitignore
@@ -1,4 +1,7 @@
.idea/
vendor/
.phpunit.result.cache
composer.phar
vendor/
config/*.local.php
config/development.config.php
data/cache/*
data/upload/*
!data/cache/.gitkeep
.idea/
Empty file added README.md
Empty file.
76 changes: 38 additions & 38 deletions composer.json
@@ -1,38 +1,38 @@
{
"name": "alex-patterson-webdev/entity",
"version" : "1.0.0",
"authors": [
{
"name": "Alex Patterson",
"email": "alex.patterson.webdev@gmail.com"
}
],
"require" : {
"php" : "^7.2",
"alex-patterson-webdev/date-time" : "dev-master",
"alex-patterson-webdev/stdlib" : "dev-master"
},
"require-dev" : {
"phpunit/phpunit" : "^8"
},
"autoload": {
"psr-4": {
"Arp\\Entity\\" : "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArpTest\\Entity\\" : "test/"
}
},
"repositories" : [
{
"type": "vcs",
"url": "/home/alexp/www/git/alex-patterson-webdev/date-time.git"
},
{
"type": "vcs",
"url": "/home/alexp/www/git/alex-patterson-webdev/stdlib.git"
}
]
}
{
"name": "alex-patterson-webdev/entity",
"description": "Shared library of domain objects, traits and interfaces",
"version": "1.0.0",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Alex Patterson",
"email": "alex.patterson.webdev@gmail.com"
}
],
"require": {
"php": ">=7.2"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^8"
},
"autoload": {
"psr-4": {
"Arp\\Entity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ArpTest\\Entity\\": "test/phpunit"
}
},
"scripts": {
"test": "phpunit --coverage-clover=coverage.xml"
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"sort-packages": true
}
}

0 comments on commit 5acb8cd

Please sign in to comment.