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 6b312dd commit 45d6745Copy full SHA for 45d6745
.github/workflows/phpcs.yml
@@ -42,4 +42,4 @@ jobs:
42
run: composer install --no-interaction --prefer-dist
43
44
- name: Check codestyle
45
- run: ./vendor/bin/phpcs --standard=PEAR src/
+ run: ./vendor/bin/phpcs
Makefile
@@ -1,3 +1,3 @@
1
check:
2
./vendor/bin/phpunit
3
- ./vendor/bin/phpcs --standard=PEAR src/
+ ./vendor/bin/phpcs
phpcs.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0"?>
+<ruleset name="JsonMapper"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
+ xsi:noNamespaceSchemaLocation="phpcs.xsd">
5
+
6
+ <rule ref="PEAR"/>
7
+ <rule ref="Generic.Files.LineLength">
8
+ <properties>
9
+ <property name="lineLimit" value="100"/>
10
+ </properties>
11
+ </rule>
12
13
+ <file>src/</file>
14
+</ruleset>
0 commit comments