Skip to content

Commit b902128

Browse files
committed
Updated composer.json
1 parent 524e937 commit b902128

File tree

6 files changed

+42
-35
lines changed

6 files changed

+42
-35
lines changed

.editorconfig

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[composer.json]
2+
indent_size = 4

.gitignore

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
# IDE's
2-
/.idea/
2+
.idea/
33

44
# Composer
5-
/vendor/
5+
vendor/
66
composer.phar
77
composer.lock
88

99
# PhpUnit
10+
tests/coverage/
1011
.phpunit.result.cache

.idea/dissect.iml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/misc.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/modules.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

composer.json

Lines changed: 37 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,58 @@
11
{
22
"name": "walterwoshid/dissect",
3-
"description": "Lexing and parsing in pure PHP",
4-
"keywords": ["lexing", "parsing", "ast", "parser"],
3+
"description": "A set of tools for lexical and syntactical analysis written in pure PHP - Fork by WalterWoshid",
4+
"version": "2.0.0",
5+
"type": "library",
56
"homepage": "https://github.com/jakubledl/dissect",
6-
"license": "unlicense",
7+
"license": "MIT",
78
"authors": [
89
{
910
"name": "Jakub Lédl",
10-
"email": "jakubledl@gmail.com"
11+
"email": "jakubledl@gmail.com",
12+
"homepage": "https://github.com/jakubledl"
13+
},
14+
{
15+
"name": "WalterWoshid",
16+
"email": "wotschel.valentin@googlemail.com",
17+
"homepage": "https://github.com/WalterWoshid"
1118
}
1219
],
13-
20+
"keywords": [
21+
"lexing",
22+
"parsing",
23+
"ast",
24+
"parser"
25+
],
26+
"bin": [
27+
"bin/dissect.php",
28+
"bin/dissect"
29+
],
30+
"scripts": {
31+
"test": "phpunit",
32+
"test-coverage": "phpunit --coverage-html tests/coverage"
33+
},
1434
"require": {
1535
"php": ">=8.0"
1636
},
17-
1837
"require-dev": {
1938
"symfony/console": ">=6.0",
2039
"phpunit/phpunit": ">=9"
2140
},
22-
2341
"suggest": {
2442
"symfony/console": "for the command-line tool"
2543
},
26-
27-
"bin": ["bin/dissect.php", "bin/dissect"],
28-
2944
"autoload": {
30-
"psr-0": { "Dissect": ["src/"] }
45+
"psr-0": {
46+
"Dissect": [
47+
"src/"
48+
]
49+
}
50+
},
51+
"autoload-dev": {
52+
"psr-0": {
53+
"Dissect\\Tests": [
54+
"tests/"
55+
]
56+
}
3157
}
3258
}

0 commit comments

Comments
 (0)