generated from spatie/package-skeleton-php
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
64 lines (64 loc) · 1.73 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "keepsuit/liquid",
"description": "PHP implementation of liquid markup language",
"keywords": [
"keepsuit",
"liquid"
],
"homepage": "https://github.com/keepsuit/php-liquid",
"license": "MIT",
"authors": [
{
"name": "Fabio Capucci",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"ext-mbstring": "*"
},
"require-dev": {
"laravel/pint": "^1.2",
"pestphp/pest": "^2.7",
"pestphp/pest-plugin-arch": "^2.2",
"phpbench/phpbench": "dev-master",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"spatie/invade": "^2.0",
"spatie/ray": "^1.28",
"symfony/console": "^6.3 || ^7.0",
"symfony/yaml": "^6.0 || ^7.0"
},
"autoload": {
"psr-4": {
"Keepsuit\\Liquid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Keepsuit\\Liquid\\Tests\\": "tests",
"Keepsuit\\Liquid\\Performance\\": "performance"
}
},
"scripts": {
"test": "pest",
"test-coverage": "pest --coverage",
"lint": [
"pint",
"phpstan analyse"
],
"benchmark": "phpbench run --report=aggregate --php-config=\"opcache.enable: 1, opcache.enable_cli: 1\"",
"profile": "phpbench xdebug:profile"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}