justintime50-styles 0.8.1 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # CHANGELOG
2
2
 
3
+ ## v0.9.1 (2025-05-14)
4
+
5
+ - Corrects style dependency for PHP
6
+
7
+ ## v0.9.0 (2025-05-14)
8
+
9
+ - Warn on unused variables for PHP
10
+
3
11
  ## v0.8.1 (2025-05-12)
4
12
 
5
13
  - Include `searchAnnotations` for `UnusedUses`
package/composer.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "justintime50/styles",
3
3
  "description": "A collection of style guides and best practices used for my projects and teams.",
4
- "version": "0.8.1",
4
+ "version": "0.9.1",
5
5
  "license": "MIT",
6
6
  "type": "library",
7
7
  "homepage": "https://github.com/Justintime50/styles",
@@ -12,9 +12,7 @@
12
12
  }
13
13
  ],
14
14
  "require": {
15
- "php": "^8.0"
16
- },
17
- "require-dev": {
15
+ "php": "^8.0",
18
16
  "slevomat/coding-standard": "^8.18"
19
17
  },
20
18
  "config": {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "justintime50-styles",
3
3
  "description": "A collection of style guides and best practices used for my projects and teams.",
4
- "version": "0.8.1",
4
+ "version": "0.9.1",
5
5
  "author": "Justintime50",
6
6
  "license": "MIT",
7
7
  "homepage": "https://github.com/justintime50/styles",
package/src/php/phpcs.xml CHANGED
@@ -40,4 +40,5 @@
40
40
  <property name="searchAnnotations" type="boolean" value="true"/>
41
41
  </properties>
42
42
  </rule>
43
+ <rule ref="SlevomatCodingStandard.Variables.UnusedVariable"/>
43
44
  </ruleset>