-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
42 lines (42 loc) · 1.02 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
{
"name": "scssphp/source-span",
"type": "library",
"description": "Provides a representation for source code locations and spans.",
"keywords": ["parsing"],
"license": [
"MIT"
],
"authors": [
{
"name": "Christophe Coevoet",
"homepage": "https://github.com/stof"
}
],
"autoload": {
"psr-4": { "SourceSpan\\": "src/" }
},
"autoload-dev": {
"psr-4": { "SourceSpan\\Tests\\": "tests/" }
},
"require": {
"php": ">=8.1",
"league/uri": "^7.4",
"league/uri-interfaces": "^7.4"
},
"require-dev": {
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^9.5.6",
"squizlabs/php_codesniffer": "~3.5",
"symfony/phpunit-bridge": "^5.1",
"symfony/var-dumper": "^6.3"
},
"extra": {
"branch-alias": {
"dev-main": "1.x-dev"
}
},
"config": {
"sort-packages": true
}
}