Skip to content

Commit

Permalink
Merge branch 'release/0.0.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
jgrossi committed Oct 17, 2016
2 parents 9a83f58 + 6c9ed6b commit 48a7336
Show file tree
Hide file tree
Showing 31 changed files with 3,125 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.idea
vendor
.DS_Store
6 changes: 6 additions & 0 deletions .styleci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
preset: psr2
risky: false
linting: true
finder:
name:
- "*.php"
23 changes: 23 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
language: php
php:
- '5.6'
- '7.0'
dist: trusty
sudo: required
addons:
apt:
packages:
- unzip
- mysql-server-5.6
- mysql-client-core-5.6
- mysql-client-5.6
before_install:
- unzip tests/config/database.sql.zip -d tests/config/
- mysql -u root -e "create database corcel_acf;"
- mysql -u root corcel_acf < tests/config/database.sql
before_script:
- composer self-update
- composer install
script:
- mkdir -p build/logs
- phpunit
24 changes: 24 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "corcel/acf",
"description": "Advanced Custom Field (ACF) plugin for Corcel",
"homepage": "http://github.com/corcel/acf",
"license": "MIT",
"authors": [
{
"name": "Junior Grossi",
"email": "[email protected]",
"homepage": "http://jgrossi.com"
}
],
"require": {
"jgrossi/corcel": "~1.2.0"
},
"require-dev": {
"phpunit/phpunit": "4.2.2"
},
"autoload": {
"psr-4": {
"Corcel\\Acf\\": "src/"
}
}
}
Loading

0 comments on commit 48a7336

Please sign in to comment.