-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.06 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.06 KB
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
{
"name": "julien-boudry/enigma-machine",
"description": "Enigma cipher machine was invented by a German engineer. This PHP package simulates its operation.",
"license": "MIT",
"type": "library",
"bin": ["bin/enigma"],
"require": {
"php": "^8.4",
"symfony/console": "^7.4|^8.0"
},
"require-dev": {
"league/commonmark": "^2.7",
"pestphp/pest": "^4.1",
"phpstan/phpstan": "^2.1",
"julien-boudry/php-reference": "dev-dev",
"friendsofphp/php-cs-fixer": "^3.91"
},
"autoload": {
"psr-4": {
"JulienBoudry\\EnigmaMachine\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"scripts": {
"test": "pest",
"lint": "php-cs-fixer fix",
"analyse": "phpstan analyse"
},
"scripts-descriptions": {
"test": "Run all tests!",
"analyse": "Run PHPStan static analysis"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}