-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
31 lines (31 loc) · 871 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
{
"name": "exan/landviz",
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"Exan\\Landviz\\": "src/"
}
},
"require": {
"exan/container": "^1.0.1",
"httpsoft/http-server-request": "^1.1",
"httpsoft/http-emitter": "^1.1",
"league/plates": "^3.5",
"exan/config": "^1.0",
"exan/phpfuck": "^1.0",
"league/route": "^5.0",
"exan/input-parser": "^1.0",
"symfony/validator": "^6.3"
},
"require-dev": {
"symfony/var-dumper": "^6.4",
"friendsofphp/php-cs-fixer": "^3.16",
"phpunit/phpunit": "^10.3",
"mockery/mockery": "^1.6"
},
"scripts": {
"cs": "./vendor/bin/php-cs-fixer fix src/ --rules=@PER --dry-run --diff",
"csf": "./vendor/bin/php-cs-fixer fix src/ --rules=@PER"
}
}