-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from mremi/master
fix(namespace): update namespaces and add travis
- Loading branch information
Showing
10 changed files
with
57 additions
and
6,856 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
/build/ | ||
/vendor/ | ||
|
||
/.php_cs.cache | ||
/composer.lock |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
language: php | ||
|
||
php: | ||
- '7.1' | ||
- '7.2' | ||
|
||
dist: trusty | ||
sudo: false | ||
|
||
cache: | ||
directories: | ||
- $HOME/.composer/cache/files | ||
|
||
before_install: composer self-update | ||
|
||
install: make app-install | ||
|
||
script: | ||
- make app-composer-validate | ||
- make app-test-with-code-coverage | ||
- make app-static-analysis | ||
- make app-cs-check | ||
- make app-security-check |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
{ | ||
"name": "ekino/phpstan-sonata", | ||
"description": "PHPStan extension for Sonata", | ||
"license": "proprietary", | ||
"type": "library", | ||
"autoload": { | ||
"psr-4": { | ||
"PHPStan\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\PHPStan\\": "tests" | ||
"description": "PHPStan extension for Sonata", | ||
"keywords": ["PHPStan", "Sonata Project"], | ||
"homepage": "https://github.com/ekino/phpstan-sonata", | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Rémi Marseille", | ||
"email": "[email protected]", | ||
"homepage": "https://www.ekino.com" | ||
} | ||
}, | ||
|
||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
|
||
], | ||
"require": { | ||
"php": "^7.1", | ||
"phpstan/phpstan": "^0.10", | ||
|
@@ -28,6 +23,18 @@ | |
"friendsofphp/php-cs-fixer": "^2.12", | ||
"sensiolabs/security-checker": "^4.1" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Ekino\\PHPStanSonata\\": "src" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Tests\\Ekino\\PHPStanSonata\\": "tests" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true, | ||
|
||
"extra": { | ||
"branch-alias": { | ||
|
Oops, something went wrong.