Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reformat project according to PSR-2 coding standard #147

Open
wants to merge 6 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Reformat configuration files
  • Loading branch information
akalongman committed Oct 5, 2017
commit 8c56e7ab7a3108915cef2b318af5f0ac84b4b82d
76 changes: 41 additions & 35 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,37 +1,43 @@
{
"name": "xethron/migrations-generator",
"description": "Generates Laravel Migrations from an existing database",
"keywords": ["laravel", "migration", "generator", "migrations", "artisan"],
"license": "MIT",
"authors": [
{
"name": "Bernhard Breytenbach",
"email": "bernhard@coffeecode.co.za"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=4.1",
"xethron/laravel-4-generators": "~3.1.0",
"doctrine/dbal": "~2.4"
},
"autoload": {
"psr-0": {
"Xethron\\MigrationsGenerator": "src/"
}
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"mockery/mockery": ">=0.9.0",
"illuminate/cache": ">=4.1.0",
"illuminate/console": ">=4.1.0"
},
"extra": {
"laravel": {
"providers": [
"Way\\Generators\\GeneratorsServiceProvider",
"Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
]
}
}
"name": "xethron/migrations-generator",
"description": "Generates Laravel Migrations from an existing database",
"keywords": [
"laravel",
"migration",
"generator",
"migrations",
"artisan"
],
"license": "MIT",
"authors": [
{
"name": "Bernhard Breytenbach",
"email": "bernhard@coffeecode.co.za"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": ">=4.1",
"xethron/laravel-4-generators": "~3.1.0",
"doctrine/dbal": "~2.4"
},
"autoload": {
"psr-0": {
"Xethron\\MigrationsGenerator": "src/"
}
},
"require-dev": {
"phpunit/phpunit": ">=4.0.0",
"mockery/mockery": ">=0.9.0",
"illuminate/cache": ">=4.1.0",
"illuminate/console": ">=4.1.0"
},
"extra": {
"laravel": {
"providers": [
"Way\\Generators\\GeneratorsServiceProvider",
"Xethron\\MigrationsGenerator\\MigrationsGeneratorServiceProvider"
]
}
}
}
46 changes: 23 additions & 23 deletions phpunit.xml
Original file line number Diff line number Diff line change
@@ -1,27 +1,27 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
stderr="true"
backupStaticAttributes="false"
bootstrap="vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
stderr="true"
>
<testsuites>
<testsuite name="Application Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="report/" charset="UTF-8" yui="true" />
</logging>
<testsuites>
<testsuite name="Application Test Suite">
<directory>tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist addUncoveredFilesFromWhitelist="true">
<directory suffix=".php">src</directory>
</whitelist>
</filter>
<logging>
<log type="coverage-html" target="report/" charset="UTF-8" yui="true"/>
</logging>
</phpunit>