We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1106b6d commit 7d73664Copy full SHA for 7d73664
composer.json
@@ -22,6 +22,13 @@
22
"Prestashop": "Protechstudio\\PrestashopWebService\\PrestashopWebServiceFacade"
23
}
24
25
-}
26
-
+ },
+ "require-dev": {
27
+ "squizlabs/php_codesniffer": "^3.2",
28
+ "phpunit/phpunit": "^6.5"
29
30
+ "scripts": {
31
+ "test": "vendor/bin/phpunit",
32
+ "cs": "vendor/bin/phpcs src/*"
33
+ }
34
phpcs.xml.dist
@@ -0,0 +1,10 @@
1
+<?xml version="1.0"?>
2
+<ruleset name="LaravelPrestashopWebservice">
3
+
4
+ <description>A basic coding standard.</description>
5
6
+ <exclude-pattern>vendor/*</exclude-pattern>
7
8
+ <rule ref="PSR2" />
9
10
+</ruleset>
phpunit.xml renamed to phpunit.xml.dist
0 commit comments