-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 896 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 896 Bytes
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
{
"name": "alcamo/xpointer",
"description": "Implementation of XPointer framework with xmlns() and xpointer() schemes",
"keywords": [ "xpointer", "xml", "dom" ],
"license": "Apache-2.0",
"require": {
"php": "7.3 - 8.0",
"alcamo/xml": "^0.1"
},
"autoload": {
"psr-4": {
"alcamo\\xpointer\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "3.*"
},
"scripts": {
"test": [
"phpunit tests",
"phpcs --standard=PSR12 -p -s src",
"phpcs --standard=PSR12 -p -s --exclude=PSR1.Classes.ClassDeclaration,PSR1.Files.SideEffects tests"
],
"fix": [
"phpcbf --standard=PSR12 -p -s src",
"phpcbf --standard=PSR12 -p -s --exclude=PSR1.Classes.ClassDeclaration,PSR1.Files.SideEffects tests"
]
}
}