forked from 8fold/php-markup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
53 lines (53 loc) · 1.23 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
{
"name": "8fold/php-markup",
"description": "8fold Markup seeks to make writing semi-structured data easier while allowing for more dynamism.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Josh Bruce",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"8fold/php-html-builder": "^0.6.0"
},
"require-dev": {
"phpstan/phpstan": "^1.4.3",
"phpunit/phpunit": "^9.5.13",
"squizlabs/php_codesniffer": "^3.6.2"
},
"autoload": {
"psr-4": {
"Eightfold\\Markup\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Eightfold\\Markup\\Tests\\": "./tests/",
"Eightfold\\Foldable\\Tests\\": "./vendor/8fold/php-foldable/tests/"
}
},
"config": {
"preferred-install": "dist"
},
"prefer-stable": true,
"scripts": {
"prod": "@production",
"production": [
"composer dumpautoload -o",
"@style",
"@stan",
"@test"
],
"deploy": [
"@production",
"@optimize-autoload"
],
"style": "./vendor/bin/phpcs --standard=phpcs.xml",
"stan": "./vendor/bin/phpstan analyze",
"test": "./vendor/bin/phpunit",
"optimize-autoload": "composer dumpautoload --no-dev --classmap-authoritative"
}
}