-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
37 lines (37 loc) · 983 Bytes
/
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
{
"name": "leongrdic/dataplater",
"description": "Template engine that uses data-* attributes so your HTML templates look great before rendering",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/leongrdic/php-dataplater",
"require": {
"php": ">=8.0",
"ext-dom": "*",
"ext-libxml": "*",
"leongrdic/smplang": "^1.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"friendsofphp/php-cs-fixer": "^v3.8"
},
"autoload": {
"psr-4": {
"Le\\Dataplater\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Le\\Dataplater\\Tests\\": "tests/"
}
},
"scripts": {
"test": "./vendor/bin/pest --no-coverage",
"test-coverage": "./vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}