forked from jorgecasas/php-ml
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tests: update to PHPUnit 6.0 with rector * fix namespaces on tests * composer + tests: use standard test namespace naming * update travis * resolve conflict * phpstan lvl 2 * phpstan lvl 3 * phpstan lvl 4 * phpstan lvl 5 * phpstan lvl 6 * phpstan lvl 7 * level max * resolve conflict * [cs] clean empty docs * composer: bump to PHPUnit 6.4 * cleanup * composer + travis: add phpstan * phpstan lvl 1 * composer: update dev deps * phpstan fixes * update Contributing with new tools * docs: link fixes, PHP version update * composer: drop php-cs-fixer, cs already handled by ecs * ecs: add old set rules * [cs] apply rest of rules
- Loading branch information
Showing
103 changed files
with
365 additions
and
284 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
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 |
---|---|---|
|
@@ -11,19 +11,24 @@ | |
"email": "[email protected]" | ||
} | ||
], | ||
"autoload": { | ||
"psr-4": { | ||
"Phpml\\": "src/Phpml" | ||
} | ||
}, | ||
"require": { | ||
"php": "^7.1" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^6.4", | ||
"friendsofphp/php-cs-fixer": "^2.4", | ||
"symplify/easy-coding-standard": "dev-master as 2.5", | ||
"symplify/coding-standard": "dev-master as 2.5", | ||
"symplify/package-builder": "dev-master#3604bea as 2.5" | ||
"symplify/easy-coding-standard": "v3.0.0-RC3", | ||
"symplify/coding-standard": "v3.0.0-RC3", | ||
"symplify/package-builder": "v3.0.0-RC3", | ||
"phpstan/phpstan-shim": "^0.8" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Phpml\\": "src/Phpml" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"Phpml\\Tests\\": "tests/Phpml" | ||
} | ||
} | ||
} |
Oops, something went wrong.