Projekt

Obecné

Profil

« Předchozí | Další » 

Revize 63638f58

Přidáno uživatelem Tomáš Ballák před více než 4 roky(ů)

almost done

Zobrazit rozdíly:

.php_cs.cache
1
{"php":"7.4.4","version":"2.16.1:v2.16.1#c8afb599858876e95e8ebfcd97812d383fa23f02","indent":"    ","lineEnding":"\n","rules":{"blank_line_after_namespace":true,"braces":true,"class_definition":true,"constant_case":true,"elseif":true,"function_declaration":true,"indentation_type":true,"line_ending":true,"lowercase_keywords":true,"method_argument_space":{"on_multiline":"ensure_fully_multiline"},"no_break_comment":true,"no_closing_tag":true,"no_spaces_after_function_name":true,"no_spaces_inside_parenthesis":true,"no_trailing_whitespace":true,"no_trailing_whitespace_in_comment":true,"single_blank_line_at_eof":true,"single_class_element_per_statement":{"elements":["property"]},"single_import_per_statement":true,"single_line_after_imports":true,"switch_case_semicolon_to_colon":true,"switch_case_space":true,"visibility_required":true,"encoding":true,"full_opening_tag":true},"hashes":{"website\/src\/Kernel.php":402027657}}
composer-install.bat
1
docker run --rm --interactive --tty --volume %CD%/website:/app composer install
composer-install.sh
1
#!/bin/bash
2
#Install all dependecies of Symfony project: composer install
3
cat << "EOF"
4
 ______  ______  __    __  ______ ______  ______  ______  ______       __  __   __  ______  ______ ______  __      __        
5
/\  ___\/\  __ \/\ "-./  \/\  == /\  __ \/\  ___\/\  ___\/\  == \     /\ \/\ "-.\ \/\  ___\/\__  _/\  __ \/\ \    /\ \       
6
\ \ \___\ \ \/\ \ \ \-./\ \ \  _-\ \ \/\ \ \___  \ \  __\\ \  __<     \ \ \ \ \-.  \ \___  \/_/\ \\ \  __ \ \ \___\ \ \____  
7
 \ \_____\ \_____\ \_\ \ \_\ \_\  \ \_____\/\_____\ \_____\ \_\ \_\    \ \_\ \_\\"\_\/\_____\ \ \_\\ \_\ \_\ \_____\ \_____\ 
8
  \/_____/\/_____/\/_/  \/_/\/_/   \/_____/\/_____/\/_____/\/_/ /_/     \/_/\/_/ \/_/\/_____/  \/_/ \/_/\/_/\/_____/\/_____/                                                                                                                                                                                                                                                                                                                                                                                                                                      
9
EOF
10
docker run --rm --interactive --tty --volume $PWD/website:/app composer install
scripts/composer.bat
1
docker run --rm --interactive --tty --volume %CD%/website:/app composer %*
scripts/composer.sh
1
#!/bin/bash
2
#Install all dependecies of Symfony project: composer install
3
cat << "EOF"
4
 ______  ______  __    __  ______ ______  ______  ______  ______ 
5
/\  ___\/\  __ \/\ "-./  \/\  == /\  __ \/\  ___\/\  ___\/\  == \  
6
\ \ \___\ \ \/\ \ \ \-./\ \ \  _-\ \ \/\ \ \___  \ \  __\\ \  __<  
7
 \ \_____\ \_____\ \_\ \ \_\ \_\  \ \_____\/\_____\ \_____\ \_\ \_\
8
  \/_____/\/_____/\/_/  \/_/\/_/   \/_____/\/_____/\/_____/\/_/ /_/
9
EOF
10
docker run --rm --interactive --tty --volume $PWD/website:/app composer $@
website/.gitignore
1

  
2
###> friendsofphp/php-cs-fixer ###
3
/.php_cs
4
/.php_cs.cache
5
###< friendsofphp/php-cs-fixer ###
website/.php_cs.dist
1
<?php
2

  
3
$finder = PhpCsFixer\Finder::create()
4
    ->in(__DIR__)
5
    ->exclude('var')
6
;
7

  
8
return PhpCsFixer\Config::create()
9
    ->setRules([
10
        '@Symfony' => true,
11
        'array_syntax' => ['syntax' => 'short'],
12
    ])
13
    ->setFinder($finder)
14
;
website/composer.json
1 1
{
2 2
    "type": "project",
3
    "name": "zcu/opendata",
4
    "description": "opendatazcu",
3 5
    "license": "proprietary",
4 6
    "require": {
5 7
        "php": "^7.2.5",
......
12 14
        "symfony/yaml": "5.0.*"
13 15
    },
14 16
    "require-dev": {
17
        "friendsofphp/php-cs-fixer": "^2.16",
18
        "squizlabs/php_codesniffer": "^3.5"
15 19
    },
16 20
    "config": {
17 21
        "preferred-install": {
website/composer.lock
4 4
        "Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
5 5
        "This file is @generated automatically"
6 6
    ],
7
    "content-hash": "7f769bc9dabc952a9e9210886c4900c8",
7
    "content-hash": "492faf1d6a3fd9107c34dc79aa1566be",
8 8
    "packages": [
9 9
        {
10 10
            "name": "psr/cache",
......
1965 1965
            "time": "2020-02-03T13:51:17+00:00"
1966 1966
        }
1967 1967
    ],
1968
    "packages-dev": [],
1968
    "packages-dev": [
1969
        {
1970
            "name": "composer/semver",
1971
            "version": "1.5.1",
1972
            "source": {
1973
                "type": "git",
1974
                "url": "https://github.com/composer/semver.git",
1975
                "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de"
1976
            },
1977
            "dist": {
1978
                "type": "zip",
1979
                "url": "https://api.github.com/repos/composer/semver/zipball/c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
1980
                "reference": "c6bea70230ef4dd483e6bbcab6005f682ed3a8de",
1981
                "shasum": ""
1982
            },
1983
            "require": {
1984
                "php": "^5.3.2 || ^7.0"
1985
            },
1986
            "require-dev": {
1987
                "phpunit/phpunit": "^4.5 || ^5.0.5"
1988
            },
1989
            "type": "library",
1990
            "extra": {
1991
                "branch-alias": {
1992
                    "dev-master": "1.x-dev"
1993
                }
1994
            },
1995
            "autoload": {
1996
                "psr-4": {
1997
                    "Composer\\Semver\\": "src"
1998
                }
1999
            },
2000
            "notification-url": "https://packagist.org/downloads/",
2001
            "license": [
2002
                "MIT"
2003
            ],
2004
            "authors": [
2005
                {
2006
                    "name": "Nils Adermann",
2007
                    "email": "naderman@naderman.de",
2008
                    "homepage": "http://www.naderman.de"
2009
                },
2010
                {
2011
                    "name": "Jordi Boggiano",
2012
                    "email": "j.boggiano@seld.be",
2013
                    "homepage": "http://seld.be"
2014
                },
2015
                {
2016
                    "name": "Rob Bast",
2017
                    "email": "rob.bast@gmail.com",
2018
                    "homepage": "http://robbast.nl"
2019
                }
2020
            ],
2021
            "description": "Semver library that offers utilities, version constraint parsing and validation.",
2022
            "keywords": [
2023
                "semantic",
2024
                "semver",
2025
                "validation",
2026
                "versioning"
2027
            ],
2028
            "time": "2020-01-13T12:06:48+00:00"
2029
        },
2030
        {
2031
            "name": "composer/xdebug-handler",
2032
            "version": "1.4.1",
2033
            "source": {
2034
                "type": "git",
2035
                "url": "https://github.com/composer/xdebug-handler.git",
2036
                "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7"
2037
            },
2038
            "dist": {
2039
                "type": "zip",
2040
                "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/1ab9842d69e64fb3a01be6b656501032d1b78cb7",
2041
                "reference": "1ab9842d69e64fb3a01be6b656501032d1b78cb7",
2042
                "shasum": ""
2043
            },
2044
            "require": {
2045
                "php": "^5.3.2 || ^7.0 || ^8.0",
2046
                "psr/log": "^1.0"
2047
            },
2048
            "require-dev": {
2049
                "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 8"
2050
            },
2051
            "type": "library",
2052
            "autoload": {
2053
                "psr-4": {
2054
                    "Composer\\XdebugHandler\\": "src"
2055
                }
2056
            },
2057
            "notification-url": "https://packagist.org/downloads/",
2058
            "license": [
2059
                "MIT"
2060
            ],
2061
            "authors": [
2062
                {
2063
                    "name": "John Stevenson",
2064
                    "email": "john-stevenson@blueyonder.co.uk"
2065
                }
2066
            ],
2067
            "description": "Restarts a process without Xdebug.",
2068
            "keywords": [
2069
                "Xdebug",
2070
                "performance"
2071
            ],
2072
            "funding": [
2073
                {
2074
                    "url": "https://packagist.com",
2075
                    "type": "custom"
2076
                }
2077
            ],
2078
            "time": "2020-03-01T12:26:26+00:00"
2079
        },
2080
        {
2081
            "name": "doctrine/annotations",
2082
            "version": "1.10.1",
2083
            "source": {
2084
                "type": "git",
2085
                "url": "https://github.com/doctrine/annotations.git",
2086
                "reference": "5eb79f3dbdffed6544e1fc287572c0f462bd29bb"
2087
            },
2088
            "dist": {
2089
                "type": "zip",
2090
                "url": "https://api.github.com/repos/doctrine/annotations/zipball/5eb79f3dbdffed6544e1fc287572c0f462bd29bb",
2091
                "reference": "5eb79f3dbdffed6544e1fc287572c0f462bd29bb",
2092
                "shasum": ""
2093
            },
2094
            "require": {
2095
                "doctrine/lexer": "1.*",
2096
                "ext-tokenizer": "*",
2097
                "php": "^7.1"
2098
            },
2099
            "require-dev": {
2100
                "doctrine/cache": "1.*",
2101
                "phpunit/phpunit": "^7.5"
2102
            },
2103
            "type": "library",
2104
            "extra": {
2105
                "branch-alias": {
2106
                    "dev-master": "1.9.x-dev"
2107
                }
2108
            },
2109
            "autoload": {
2110
                "psr-4": {
2111
                    "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
2112
                }
2113
            },
2114
            "notification-url": "https://packagist.org/downloads/",
2115
            "license": [
2116
                "MIT"
2117
            ],
2118
            "authors": [
2119
                {
2120
                    "name": "Guilherme Blanco",
2121
                    "email": "guilhermeblanco@gmail.com"
2122
                },
2123
                {
2124
                    "name": "Roman Borschel",
2125
                    "email": "roman@code-factory.org"
2126
                },
2127
                {
2128
                    "name": "Benjamin Eberlei",
2129
                    "email": "kontakt@beberlei.de"
2130
                },
2131
                {
2132
                    "name": "Jonathan Wage",
2133
                    "email": "jonwage@gmail.com"
2134
                },
2135
                {
2136
                    "name": "Johannes Schmitt",
2137
                    "email": "schmittjoh@gmail.com"
2138
                }
2139
            ],
2140
            "description": "Docblock Annotations Parser",
2141
            "homepage": "http://www.doctrine-project.org",
2142
            "keywords": [
2143
                "annotations",
2144
                "docblock",
2145
                "parser"
2146
            ],
2147
            "time": "2020-04-02T12:33:25+00:00"
2148
        },
2149
        {
2150
            "name": "doctrine/lexer",
2151
            "version": "1.2.0",
2152
            "source": {
2153
                "type": "git",
2154
                "url": "https://github.com/doctrine/lexer.git",
2155
                "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6"
2156
            },
2157
            "dist": {
2158
                "type": "zip",
2159
                "url": "https://api.github.com/repos/doctrine/lexer/zipball/5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
2160
                "reference": "5242d66dbeb21a30dd8a3e66bf7a73b66e05e1f6",
2161
                "shasum": ""
2162
            },
2163
            "require": {
2164
                "php": "^7.2"
2165
            },
2166
            "require-dev": {
2167
                "doctrine/coding-standard": "^6.0",
2168
                "phpstan/phpstan": "^0.11.8",
2169
                "phpunit/phpunit": "^8.2"
2170
            },
2171
            "type": "library",
2172
            "extra": {
2173
                "branch-alias": {
2174
                    "dev-master": "1.2.x-dev"
2175
                }
2176
            },
2177
            "autoload": {
2178
                "psr-4": {
2179
                    "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
2180
                }
2181
            },
2182
            "notification-url": "https://packagist.org/downloads/",
2183
            "license": [
2184
                "MIT"
2185
            ],
2186
            "authors": [
2187
                {
2188
                    "name": "Guilherme Blanco",
2189
                    "email": "guilhermeblanco@gmail.com"
2190
                },
2191
                {
2192
                    "name": "Roman Borschel",
2193
                    "email": "roman@code-factory.org"
2194
                },
2195
                {
2196
                    "name": "Johannes Schmitt",
2197
                    "email": "schmittjoh@gmail.com"
2198
                }
2199
            ],
2200
            "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
2201
            "homepage": "https://www.doctrine-project.org/projects/lexer.html",
2202
            "keywords": [
2203
                "annotations",
2204
                "docblock",
2205
                "lexer",
2206
                "parser",
2207
                "php"
2208
            ],
2209
            "time": "2019-10-30T14:39:59+00:00"
2210
        },
2211
        {
2212
            "name": "friendsofphp/php-cs-fixer",
2213
            "version": "v2.16.1",
2214
            "source": {
2215
                "type": "git",
2216
                "url": "https://github.com/FriendsOfPHP/PHP-CS-Fixer.git",
2217
                "reference": "c8afb599858876e95e8ebfcd97812d383fa23f02"
2218
            },
2219
            "dist": {
2220
                "type": "zip",
2221
                "url": "https://api.github.com/repos/FriendsOfPHP/PHP-CS-Fixer/zipball/c8afb599858876e95e8ebfcd97812d383fa23f02",
2222
                "reference": "c8afb599858876e95e8ebfcd97812d383fa23f02",
2223
                "shasum": ""
2224
            },
2225
            "require": {
2226
                "composer/semver": "^1.4",
2227
                "composer/xdebug-handler": "^1.2",
2228
                "doctrine/annotations": "^1.2",
2229
                "ext-json": "*",
2230
                "ext-tokenizer": "*",
2231
                "php": "^5.6 || ^7.0",
2232
                "php-cs-fixer/diff": "^1.3",
2233
                "symfony/console": "^3.4.17 || ^4.1.6 || ^5.0",
2234
                "symfony/event-dispatcher": "^3.0 || ^4.0 || ^5.0",
2235
                "symfony/filesystem": "^3.0 || ^4.0 || ^5.0",
2236
                "symfony/finder": "^3.0 || ^4.0 || ^5.0",
2237
                "symfony/options-resolver": "^3.0 || ^4.0 || ^5.0",
2238
                "symfony/polyfill-php70": "^1.0",
2239
                "symfony/polyfill-php72": "^1.4",
2240
                "symfony/process": "^3.0 || ^4.0 || ^5.0",
2241
                "symfony/stopwatch": "^3.0 || ^4.0 || ^5.0"
2242
            },
2243
            "require-dev": {
2244
                "johnkary/phpunit-speedtrap": "^1.1 || ^2.0 || ^3.0",
2245
                "justinrainbow/json-schema": "^5.0",
2246
                "keradus/cli-executor": "^1.2",
2247
                "mikey179/vfsstream": "^1.6",
2248
                "php-coveralls/php-coveralls": "^2.1",
2249
                "php-cs-fixer/accessible-object": "^1.0",
2250
                "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.1",
2251
                "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.1",
2252
                "phpunit/phpunit": "^5.7.27 || ^6.5.14 || ^7.1",
2253
                "phpunitgoodpractices/traits": "^1.8",
2254
                "symfony/phpunit-bridge": "^4.3 || ^5.0",
2255
                "symfony/yaml": "^3.0 || ^4.0 || ^5.0"
2256
            },
2257
            "suggest": {
2258
                "ext-mbstring": "For handling non-UTF8 characters in cache signature.",
2259
                "php-cs-fixer/phpunit-constraint-isidenticalstring": "For IsIdenticalString constraint.",
2260
                "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "For XmlMatchesXsd constraint.",
2261
                "symfony/polyfill-mbstring": "When enabling `ext-mbstring` is not possible."
2262
            },
2263
            "bin": [
2264
                "php-cs-fixer"
2265
            ],
2266
            "type": "application",
2267
            "autoload": {
2268
                "psr-4": {
2269
                    "PhpCsFixer\\": "src/"
2270
                },
2271
                "classmap": [
2272
                    "tests/Test/AbstractFixerTestCase.php",
2273
                    "tests/Test/AbstractIntegrationCaseFactory.php",
2274
                    "tests/Test/AbstractIntegrationTestCase.php",
2275
                    "tests/Test/Assert/AssertTokensTrait.php",
2276
                    "tests/Test/IntegrationCase.php",
2277
                    "tests/Test/IntegrationCaseFactory.php",
2278
                    "tests/Test/IntegrationCaseFactoryInterface.php",
2279
                    "tests/Test/InternalIntegrationCaseFactory.php",
2280
                    "tests/TestCase.php"
2281
                ]
2282
            },
2283
            "notification-url": "https://packagist.org/downloads/",
2284
            "license": [
2285
                "MIT"
2286
            ],
2287
            "authors": [
2288
                {
2289
                    "name": "Fabien Potencier",
2290
                    "email": "fabien@symfony.com"
2291
                },
2292
                {
2293
                    "name": "Dariusz Rumiński",
2294
                    "email": "dariusz.ruminski@gmail.com"
2295
                }
2296
            ],
2297
            "description": "A tool to automatically fix PHP code style",
2298
            "time": "2019-11-25T22:10:32+00:00"
2299
        },
2300
        {
2301
            "name": "php-cs-fixer/diff",
2302
            "version": "v1.3.0",
2303
            "source": {
2304
                "type": "git",
2305
                "url": "https://github.com/PHP-CS-Fixer/diff.git",
2306
                "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756"
2307
            },
2308
            "dist": {
2309
                "type": "zip",
2310
                "url": "https://api.github.com/repos/PHP-CS-Fixer/diff/zipball/78bb099e9c16361126c86ce82ec4405ebab8e756",
2311
                "reference": "78bb099e9c16361126c86ce82ec4405ebab8e756",
2312
                "shasum": ""
2313
            },
2314
            "require": {
2315
                "php": "^5.6 || ^7.0"
2316
            },
2317
            "require-dev": {
2318
                "phpunit/phpunit": "^5.7.23 || ^6.4.3",
2319
                "symfony/process": "^3.3"
2320
            },
2321
            "type": "library",
2322
            "autoload": {
2323
                "classmap": [
2324
                    "src/"
2325
                ]
2326
            },
2327
            "notification-url": "https://packagist.org/downloads/",
2328
            "license": [
2329
                "BSD-3-Clause"
2330
            ],
2331
            "authors": [
2332
                {
2333
                    "name": "Kore Nordmann",
2334
                    "email": "mail@kore-nordmann.de"
2335
                },
2336
                {
2337
                    "name": "Sebastian Bergmann",
2338
                    "email": "sebastian@phpunit.de"
2339
                },
2340
                {
2341
                    "name": "SpacePossum"
2342
                }
2343
            ],
2344
            "description": "sebastian/diff v2 backport support for PHP5.6",
2345
            "homepage": "https://github.com/PHP-CS-Fixer",
2346
            "keywords": [
2347
                "diff"
2348
            ],
2349
            "time": "2018-02-15T16:58:55+00:00"
2350
        },
2351
        {
2352
            "name": "squizlabs/php_codesniffer",
2353
            "version": "3.5.4",
2354
            "source": {
2355
                "type": "git",
2356
                "url": "https://github.com/squizlabs/PHP_CodeSniffer.git",
2357
                "reference": "dceec07328401de6211037abbb18bda423677e26"
2358
            },
2359
            "dist": {
2360
                "type": "zip",
2361
                "url": "https://api.github.com/repos/squizlabs/PHP_CodeSniffer/zipball/dceec07328401de6211037abbb18bda423677e26",
2362
                "reference": "dceec07328401de6211037abbb18bda423677e26",
2363
                "shasum": ""
2364
            },
2365
            "require": {
2366
                "ext-simplexml": "*",
2367
                "ext-tokenizer": "*",
2368
                "ext-xmlwriter": "*",
2369
                "php": ">=5.4.0"
2370
            },
2371
            "require-dev": {
2372
                "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0"
2373
            },
2374
            "bin": [
2375
                "bin/phpcs",
2376
                "bin/phpcbf"
2377
            ],
2378
            "type": "library",
2379
            "extra": {
2380
                "branch-alias": {
2381
                    "dev-master": "3.x-dev"
2382
                }
2383
            },
2384
            "notification-url": "https://packagist.org/downloads/",
2385
            "license": [
2386
                "BSD-3-Clause"
2387
            ],
2388
            "authors": [
2389
                {
2390
                    "name": "Greg Sherwood",
2391
                    "role": "lead"
2392
                }
2393
            ],
2394
            "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
2395
            "homepage": "https://github.com/squizlabs/PHP_CodeSniffer",
2396
            "keywords": [
2397
                "phpcs",
2398
                "standards"
2399
            ],
2400
            "time": "2020-01-30T22:20:29+00:00"
2401
        },
2402
        {
2403
            "name": "symfony/options-resolver",
2404
            "version": "v5.0.7",
2405
            "source": {
2406
                "type": "git",
2407
                "url": "https://github.com/symfony/options-resolver.git",
2408
                "reference": "09dccfffd24b311df7f184aa80ee7b61ad61ed8d"
2409
            },
2410
            "dist": {
2411
                "type": "zip",
2412
                "url": "https://api.github.com/repos/symfony/options-resolver/zipball/09dccfffd24b311df7f184aa80ee7b61ad61ed8d",
2413
                "reference": "09dccfffd24b311df7f184aa80ee7b61ad61ed8d",
2414
                "shasum": ""
2415
            },
2416
            "require": {
2417
                "php": "^7.2.5"
2418
            },
2419
            "type": "library",
2420
            "extra": {
2421
                "branch-alias": {
2422
                    "dev-master": "5.0-dev"
2423
                }
2424
            },
2425
            "autoload": {
2426
                "psr-4": {
2427
                    "Symfony\\Component\\OptionsResolver\\": ""
2428
                },
2429
                "exclude-from-classmap": [
2430
                    "/Tests/"
2431
                ]
2432
            },
2433
            "notification-url": "https://packagist.org/downloads/",
2434
            "license": [
2435
                "MIT"
2436
            ],
2437
            "authors": [
2438
                {
2439
                    "name": "Fabien Potencier",
2440
                    "email": "fabien@symfony.com"
2441
                },
2442
                {
2443
                    "name": "Symfony Community",
2444
                    "homepage": "https://symfony.com/contributors"
2445
                }
2446
            ],
2447
            "description": "Symfony OptionsResolver Component",
2448
            "homepage": "https://symfony.com",
2449
            "keywords": [
2450
                "config",
2451
                "configuration",
2452
                "options"
2453
            ],
2454
            "funding": [
2455
                {
2456
                    "url": "https://symfony.com/sponsor",
2457
                    "type": "custom"
2458
                },
2459
                {
2460
                    "url": "https://github.com/fabpot",
2461
                    "type": "github"
2462
                },
2463
                {
2464
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2465
                    "type": "tidelift"
2466
                }
2467
            ],
2468
            "time": "2020-03-27T16:56:45+00:00"
2469
        },
2470
        {
2471
            "name": "symfony/process",
2472
            "version": "v5.0.7",
2473
            "source": {
2474
                "type": "git",
2475
                "url": "https://github.com/symfony/process.git",
2476
                "reference": "c5ca4a0fc16a0c888067d43fbcfe1f8a53d8e70e"
2477
            },
2478
            "dist": {
2479
                "type": "zip",
2480
                "url": "https://api.github.com/repos/symfony/process/zipball/c5ca4a0fc16a0c888067d43fbcfe1f8a53d8e70e",
2481
                "reference": "c5ca4a0fc16a0c888067d43fbcfe1f8a53d8e70e",
2482
                "shasum": ""
2483
            },
2484
            "require": {
2485
                "php": "^7.2.5"
2486
            },
2487
            "type": "library",
2488
            "extra": {
2489
                "branch-alias": {
2490
                    "dev-master": "5.0-dev"
2491
                }
2492
            },
2493
            "autoload": {
2494
                "psr-4": {
2495
                    "Symfony\\Component\\Process\\": ""
2496
                },
2497
                "exclude-from-classmap": [
2498
                    "/Tests/"
2499
                ]
2500
            },
2501
            "notification-url": "https://packagist.org/downloads/",
2502
            "license": [
2503
                "MIT"
2504
            ],
2505
            "authors": [
2506
                {
2507
                    "name": "Fabien Potencier",
2508
                    "email": "fabien@symfony.com"
2509
                },
2510
                {
2511
                    "name": "Symfony Community",
2512
                    "homepage": "https://symfony.com/contributors"
2513
                }
2514
            ],
2515
            "description": "Symfony Process Component",
2516
            "homepage": "https://symfony.com",
2517
            "funding": [
2518
                {
2519
                    "url": "https://symfony.com/sponsor",
2520
                    "type": "custom"
2521
                },
2522
                {
2523
                    "url": "https://github.com/fabpot",
2524
                    "type": "github"
2525
                },
2526
                {
2527
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2528
                    "type": "tidelift"
2529
                }
2530
            ],
2531
            "time": "2020-03-27T16:56:45+00:00"
2532
        },
2533
        {
2534
            "name": "symfony/stopwatch",
2535
            "version": "v5.0.7",
2536
            "source": {
2537
                "type": "git",
2538
                "url": "https://github.com/symfony/stopwatch.git",
2539
                "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73"
2540
            },
2541
            "dist": {
2542
                "type": "zip",
2543
                "url": "https://api.github.com/repos/symfony/stopwatch/zipball/a1d86d30d4522423afc998f32404efa34fcf5a73",
2544
                "reference": "a1d86d30d4522423afc998f32404efa34fcf5a73",
2545
                "shasum": ""
2546
            },
2547
            "require": {
2548
                "php": "^7.2.5",
2549
                "symfony/service-contracts": "^1.0|^2"
2550
            },
2551
            "type": "library",
2552
            "extra": {
2553
                "branch-alias": {
2554
                    "dev-master": "5.0-dev"
2555
                }
2556
            },
2557
            "autoload": {
2558
                "psr-4": {
2559
                    "Symfony\\Component\\Stopwatch\\": ""
2560
                },
2561
                "exclude-from-classmap": [
2562
                    "/Tests/"
2563
                ]
2564
            },
2565
            "notification-url": "https://packagist.org/downloads/",
2566
            "license": [
2567
                "MIT"
2568
            ],
2569
            "authors": [
2570
                {
2571
                    "name": "Fabien Potencier",
2572
                    "email": "fabien@symfony.com"
2573
                },
2574
                {
2575
                    "name": "Symfony Community",
2576
                    "homepage": "https://symfony.com/contributors"
2577
                }
2578
            ],
2579
            "description": "Symfony Stopwatch Component",
2580
            "homepage": "https://symfony.com",
2581
            "funding": [
2582
                {
2583
                    "url": "https://symfony.com/sponsor",
2584
                    "type": "custom"
2585
                },
2586
                {
2587
                    "url": "https://github.com/fabpot",
2588
                    "type": "github"
2589
                },
2590
                {
2591
                    "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
2592
                    "type": "tidelift"
2593
                }
2594
            ],
2595
            "time": "2020-03-27T16:56:45+00:00"
2596
        }
2597
    ],
1969 2598
    "aliases": [],
1970 2599
    "minimum-stability": "stable",
1971 2600
    "stability-flags": [],
website/config/routes/annotations.yaml
1
controllers:
2
    resource: ../../src/Controller/
3
    type: annotation
4

  
5
kernel:
6
    resource: ../../src/Kernel.php
7
    type: annotation
website/phpcs.xml.dist
1
<?xml version="1.0" encoding="UTF-8"?>
2

  
3
<ruleset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4
         xsi:noNamespaceSchemaLocation="vendor/squizlabs/php_codesniffer/phpcs.xsd">
5

  
6
    <arg name="basepath" value="."/>
7
    <arg name="cache" value=".phpcs-cache"/>
8
    <arg name="colors"/>
9
    <arg name="extensions" value="php"/>
10

  
11
    <rule ref="PSR2"/>
12

  
13
    <file>bin/</file>
14
    <file>config/</file>
15
    <file>public/</file>
16
    <file>src/</file>
17
    <file>tests/</file>
18

  
19
</ruleset>
website/symfony.code-workspace
6 6
	],
7 7
	"settings": {
8 8
		"php-cs-fixer.onsave": true,
9
		"php-cs-fixer.rules":"@PSR-12",
10
		"php-cs-fixer.config": ".php_cs;.php_cs.dist"
9
		"php-cs-fixer.rules": "@PSR-2",
10
		"php-cs-fixer.config": ".php_cs;.php_cs.dist",
11
		"php-cs-fixer.executablePath": "/home/unknown/projects/aswi2020sebela/website/vendor/bin/php-cs-fixer"
11 12
	},
12 13
	"extensions": {
13 14
		"recommendations": [
......
16 17
			"ikappas.phpcs",
17 18
			"junstyle.php-cs-fixer"
18 19
		]
19
	}
20
	},
21
	"tasks": {
22
		"version": "2.0.0",
23
		"taskName": "Install dependencies",
24
		"type": "shell",
25
		"presentation": {
26
			"reveal": "always",
27
			"panel": "new"
28
		},
29
		"command": "../scripts/composer.sh install",
30
		"windows": {
31
		  "command": "..\\scripts\\composer.bat install"
32
		},
33
    }
20 34
}
website/symfony.lock
1 1
{
2
    "composer/semver": {
3
        "version": "1.5.1"
4
    },
5
    "composer/xdebug-handler": {
6
        "version": "1.4.1"
7
    },
8
    "doctrine/annotations": {
9
        "version": "1.0",
10
        "recipe": {
11
            "repo": "github.com/symfony/recipes",
12
            "branch": "master",
13
            "version": "1.0",
14
            "ref": "a2759dd6123694c8d901d0ec80006e044c2e6457"
15
        },
16
        "files": [
17
            "config/routes/annotations.yaml"
18
        ]
19
    },
20
    "doctrine/lexer": {
21
        "version": "1.2.0"
22
    },
23
    "friendsofphp/php-cs-fixer": {
24
        "version": "2.2",
25
        "recipe": {
26
            "repo": "github.com/symfony/recipes",
27
            "branch": "master",
28
            "version": "2.2",
29
            "ref": "cc05ab6abf6894bddb9bbd6a252459010ebe040b"
30
        },
31
        "files": [
32
            ".php_cs.dist"
33
        ]
34
    },
2 35
    "php": {
3 36
        "version": "7.4"
4 37
    },
38
    "php-cs-fixer/diff": {
39
        "version": "v1.3.0"
40
    },
5 41
    "psr/cache": {
6 42
        "version": "1.0.1"
7 43
    },
......
14 50
    "psr/log": {
15 51
        "version": "1.1.3"
16 52
    },
53
    "squizlabs/php_codesniffer": {
54
        "version": "3.0",
55
        "recipe": {
56
            "repo": "github.com/symfony/recipes-contrib",
57
            "branch": "master",
58
            "version": "3.0",
59
            "ref": "0dc9cceda799fd3a08b96987e176a261028a3709"
60
        },
61
        "files": [
62
            "phpcs.xml.dist"
63
        ]
64
    },
17 65
    "symfony/cache": {
18 66
        "version": "v5.0.5"
19 67
    },
......
98 146
    "symfony/mime": {
99 147
        "version": "v5.0.5"
100 148
    },
149
    "symfony/options-resolver": {
150
        "version": "v5.0.7"
151
    },
101 152
    "symfony/polyfill-intl-idn": {
102 153
        "version": "v1.14.0"
103 154
    },
......
107 158
    "symfony/polyfill-php73": {
108 159
        "version": "v1.14.0"
109 160
    },
161
    "symfony/process": {
162
        "version": "v5.0.7"
163
    },
110 164
    "symfony/routing": {
111 165
        "version": "4.2",
112 166
        "recipe": {
......
124 178
    "symfony/service-contracts": {
125 179
        "version": "v2.0.1"
126 180
    },
181
    "symfony/stopwatch": {
182
        "version": "v5.0.7"
183
    },
127 184
    "symfony/var-dumper": {
128 185
        "version": "v5.0.5"
129 186
    },

Také k dispozici: Unified diff