codemap-php 0.1.0a1__tar.gz → 0.2.0__tar.gz
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.
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/PKG-INFO +3 -3
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/README.md +1 -1
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/pyproject.toml +2 -2
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/.gitignore +0 -0
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/src/codemap_php/__init__.py +0 -0
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/src/codemap_php/indexer.py +0 -0
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/tests/__init__.py +0 -0
- {codemap_php-0.1.0a1 → codemap_php-0.2.0}/tests/test_indexer.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codemap-php
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.2.0
|
|
4
4
|
Summary: PHP indexer plugin for CodeMap
|
|
5
5
|
Project-URL: Homepage, https://github.com/qxbyte/codemap
|
|
6
6
|
Author: CodeMap Contributors
|
|
@@ -11,7 +11,7 @@ Classifier: Programming Language :: PHP
|
|
|
11
11
|
Classifier: Programming Language :: Python :: 3
|
|
12
12
|
Classifier: Topic :: Software Development
|
|
13
13
|
Requires-Python: >=3.11
|
|
14
|
-
Requires-Dist: codemap-core<0.
|
|
14
|
+
Requires-Dist: codemap-core<0.3,>=0.2.0
|
|
15
15
|
Requires-Dist: tree-sitter-php>=0.23
|
|
16
16
|
Requires-Dist: tree-sitter>=0.25
|
|
17
17
|
Provides-Extra: dev
|
|
@@ -45,7 +45,7 @@ symbol-producing type.
|
|
|
45
45
|
## Install
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
|
-
pip install
|
|
48
|
+
pip install codemap-php
|
|
49
49
|
```
|
|
50
50
|
|
|
51
51
|
## SymbolID encoding
|
|
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codemap-php"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.2.0"
|
|
8
8
|
description = "PHP indexer plugin for CodeMap"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.11"
|
|
@@ -18,7 +18,7 @@ classifiers = [
|
|
|
18
18
|
"Topic :: Software Development",
|
|
19
19
|
]
|
|
20
20
|
dependencies = [
|
|
21
|
-
"codemap-core>=0.
|
|
21
|
+
"codemap-core>=0.2.0,<0.3",
|
|
22
22
|
"tree-sitter>=0.25",
|
|
23
23
|
"tree-sitter-php>=0.23",
|
|
24
24
|
]
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|