-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.35 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "phpactor/text-document",
"description": "Collection of value objects for representing and referencing text documents",
"license": "MIT",
"authors": [
{
"name": "Daniel Leech",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"symfony/filesystem": "^5.0|^6.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.0",
"friendsofphp/php-cs-fixer": "^3.30",
"phpactor/test-utils": "^1.1.4",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^9.0",
"phpspec/prophecy-phpunit": "^2.0",
"symfony/var-dumper": "^5.2"
},
"extra": {
"branch-alias": {
"dev-master": "1.2.x-dev"
}
},
"autoload": {
"psr-4": {
"Phpactor\\TextDocument\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phpactor\\TextDocument\\Tests\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"integrate": [
"./vendor/bin/php-cs-fixer fix --allow-risky=yes",
"./vendor/bin/phpstan analyse src -c phpstan.neon",
"./vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
}
}