-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
55 lines (55 loc) · 1.37 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
{
"name": "strata/frontend",
"description": "Deliver fast, accessible user experiences on the modern web.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Jones",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"friendsofsymfony/http-cache": "^3.0",
"psr/simple-cache": "^3.0",
"masterminds/html5": "^2.9",
"strata/data": "^0.9",
"symfony/http-foundation": "^6.4|^7.1",
"symfony/yaml": "^6.4|^7.1",
"toflar/psr6-symfony-http-cache-store": "^4.0"
},
"autoload": {
"psr-4": {
"Strata\\Frontend\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "10.5",
"squizlabs/php_codesniffer": "^3.10",
"phpstan/phpstan": "^1.11",
"roave/security-advisories": "dev-latest",
"nyholm/psr7": "^1.5"
},
"scripts": {
"phpcs": [
"./vendor/bin/phpcs"
],
"phpcbf": [
"./vendor/bin/phpcbf"
],
"phpunit": [
"./vendor/bin/phpunit"
],
"phpstan": [
"./vendor/bin/phpstan analyse --memory-limit 512M"
],
"test": [
"composer phpcs",
"composer phpunit"
]
},
"config": {
"allow-plugins": false
}
}